
/* Closed-down standalone page */
.df-closed-page {
  background: #000;
  color: #ccc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.df-closed-page a {
  color: #fff;
  font-size: small;
  text-decoration: none;
}

/* Extracted from lambidjango/__templates/dutchfreelance_org/directory/index.html */
.df-filters {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
        justify-content: center;
        margin: 0 1rem 1.5rem;
    }
    .df-filters select {
        padding: .35rem .6rem;
        border: 1px solid var(--color-border);
        border-radius: 2px;
        background: var(--color-container-bg);
        color: var(--color-text);
        font: inherit;
        font-size: .85rem;
        cursor: pointer;
    }

    .df-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 .5rem;
    }
    @media (max-width: 700px) {
        .df-cards { grid-template-columns: 1fr; }
    }
    @media (min-width: 701px) and (max-width: 1000px) {
        .df-cards { grid-template-columns: repeat(2, 1fr); }
    }

    .df-card {
        border: 1px solid var(--color-border);
        border-radius: 6px;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: .6rem;
        transition: border-color .15s, box-shadow .15s;
        cursor: pointer;
    }
    .df-card:hover {
        border-color: var(--color-accent);
        box-shadow: 0 2px 12px rgba(0,0,0,.15);
    }

    .df-card-top {
        display: flex;
        align-items: center;
        gap: .75rem;
    }
    .df-avatar {
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 50%;
        background: var(--color-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 700;
        flex-shrink: 0;
        color: #fff;
    }
    .df-name {
        font-weight: 600;
        font-size: 1rem;
        margin: 0;
        line-height: 1.2;
    }
    .df-name a { text-decoration: none; }
    .df-name a:hover { text-decoration: underline; }
    .df-tagline {
        font-size: .85rem;
        color: var(--color-text-muted);
        margin: 0;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .df-badges {
        display: flex;
        flex-wrap: wrap;
        gap: .35rem;
    }
    .df-badge {
        font-size: .75rem;
        padding: .2rem .5rem;
        border-radius: 2px;
        border: 1px solid var(--color-border);
        color: var(--color-text-muted);
        white-space: nowrap;
    }
    .df-badge-role {
        border-color: var(--color-accent);
        color: var(--color-accent);
    }

    .df-rate {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0;
        color: var(--color-text);
    }
    .df-rate span {
        font-size: .8rem;
        font-weight: normal;
        color: var(--color-text-muted);
    }

    .df-card[style*="display:none"] { display: none !important; }
