/*
|--------------------------------------------------------------------------
| ClubPortal Framework
|--------------------------------------------------------------------------
| Portal-Layout
|--------------------------------------------------------------------------
|
| Enthält:
| - sichtbaren Portalkopf
| - Branding
| - Hauptnavigation
| - responsive Darstellung
|
*/


/*
|--------------------------------------------------------------------------
| Portalkopf
|--------------------------------------------------------------------------
*/

.portal-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    width: 100%;
    padding: 1.25rem 2rem;
    margin-bottom: 2rem;

    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}


/*
|--------------------------------------------------------------------------
| Branding
|--------------------------------------------------------------------------
*/

.portal-page-header__branding {
    min-width: 0;
}

.portal-page-header__title {
    margin: 0;

    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.15;

    color: #1f2937;
}

.portal-page-header__subtitle {
    margin: 0.35rem 0 0;

    font-size: 0.9rem;
    line-height: 1.5;

    color: #6b7280;
}


/*
|--------------------------------------------------------------------------
| Portalnavigation
|--------------------------------------------------------------------------
*/

.portal-navigation {
    flex-shrink: 0;
}

.portal-page-header__actions {
    display: grid;
    justify-items: end;
    gap: 0.65rem;

    min-width: 0;
}

.portal-page-header__user {
    margin: 0;
    padding: 0.45rem 0.75rem;

    max-width: 100%;

    color: #4b5563;
    background: #f9fafb;

    border: 1px solid #e5e7eb;
    border-radius: 999px;

    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.portal-page-header__user strong {
    color: #111827;
}

.portal-navigation__list {
    display: flex;
    align-items: center;
    gap: 0.6rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.portal-navigation__item {
    margin: 0;
    padding: 0;
}

.portal-navigation__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    min-height: 44px;
    padding: 0.7rem 1rem;

    color: #374151;
    background: #f3f4f6;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.portal-navigation__link:hover {
    color: #111827;
    background: #e5e7eb;

    transform: translateY(-1px);
}

.portal-navigation__link:focus-visible {
    outline: 3px solid rgba(34, 197, 94, 0.3);
    outline-offset: 3px;
}


/*
|--------------------------------------------------------------------------
| Aktiver Navigationseintrag
|--------------------------------------------------------------------------
*/

.portal-navigation__link--active {
    color: #166534;
    background: #dcfce7;
    border-color: #86efac;
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.1);
}

.portal-navigation__link--active:hover {
    color: #14532d;
    background: #bbf7d0;
}


/*
|--------------------------------------------------------------------------
| Navigationselemente
|--------------------------------------------------------------------------
*/

.portal-navigation__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
    line-height: 1;
}

.portal-navigation__label {
    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| App-Hinweis
|--------------------------------------------------------------------------
*/

.pwa-install-hint {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 30;

    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;

    max-width: 34rem;
    margin: 0 auto;
    padding: 0.75rem 0.85rem;

    color: #334155;
    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #dbe3ee;
    border-radius: 0.85rem;
    box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.16);
}

.pwa-install-hint[hidden] {
    display: none;
}

.pwa-install-hint__text {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
}

.pwa-install-hint__close {
    flex: 0 0 auto;

    width: 2rem;
    height: 2rem;
    padding: 0;

    color: #475569;
    background: #f1f5f9;

    border: 1px solid transparent;
    border-radius: 999px;

    font: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.pwa-install-hint__close:focus-visible {
    outline: 3px solid rgba(34, 197, 94, 0.3);
    outline-offset: 3px;
}


/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 800px) {
    .portal-page-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 1rem;
        padding: 1.1rem 1.25rem;
    }

    .portal-navigation {
        width: 100%;
    }

    .portal-page-header__actions {
        justify-items: stretch;

        width: 100%;
    }

    .portal-page-header__user {
        text-align: center;
    }

    .portal-navigation__list {
        width: 100%;
    }

    .portal-navigation__link {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| PortalCard
|--------------------------------------------------------------------------
*/

.portal-card-grid {
    display: grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px, 1fr)
        );
    gap: 1.25rem;
}

.portal-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;

    min-height: 100%;
    padding: 1.5rem;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;

    box-shadow:
        0 8px 24px
        rgba(15, 23, 42, 0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.portal-card:hover {
    transform: translateY(-2px);

    border-color: #cbd5e1;

    box-shadow:
        0 12px 30px
        rgba(15, 23, 42, 0.1);
}

.portal-card--inactive {
    background: #f8fafc;
    border-color: #d1d5db;
    opacity: 0.72;
}

.portal-card--inactive .portal-card__icon {
    filter: grayscale(1);
}

.portal-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 3rem;
    height: 3rem;

    font-size: 1.5rem;
    line-height: 1;

    background: #f1f5f9;
    border-radius: 0.85rem;
}

.portal-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    flex: 1;
    min-width: 0;
}

.portal-card__meta {
    margin: 0 0 0.35rem;

    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;

    color: #64748b;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.portal-card__title {
    margin: 0;

    font-size: 1.2rem;
    line-height: 1.3;

    color: #0f172a;
}

.portal-card__description {
    margin: 0.75rem 0 0;

    font-size: 0.95rem;
    line-height: 1.6;

    color: #475569;
}

.portal-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 1.25rem;
}

.portal-card__action-form {
    display: inline-flex;
    margin: 0;
}

.admin-items-form {
    max-width: none;
}

.admin-item-card {
    display: block;
    padding: 1.15rem;
}

.admin-item-card:hover {
    transform: none;
}

.admin-item-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-item-card__eyebrow {
    margin: 0 0 0.25rem;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.admin-item-card__order {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.admin-item-card__order .portal-button {
    min-height: 2.25rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.82rem;
}

.admin-item-card__grid {
    display: grid;
    grid-template-columns: minmax(9rem, 0.8fr) minmax(16rem, 1.4fr) minmax(5rem, 0.45fr) minmax(10rem, 0.75fr) minmax(12rem, 1fr) minmax(12rem, 1fr) minmax(5rem, 0.35fr) auto;
    gap: 0.75rem;
    align-items: end;
}

.admin-item-card__field--title {
    min-width: 0;
}

.admin-item-card__field--question,
.admin-item-card__field--placeholder {
    min-width: 0;
}

.admin-item-card__active {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    min-height: 2.8rem;
    padding: 0.55rem 0.7rem;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #dbe3ee;
    border-radius: 0.75rem;
    white-space: nowrap;
}

.admin-item-card__active input {
    width: 1rem;
    height: 1rem;
    margin: 0;
}

.admin-item-create-form {
    max-width: 42rem;
}

@media (max-width: 1280px) {
    .admin-item-card__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .admin-item-card__field--title,
    .admin-item-card__field--question,
    .admin-item-card__field--placeholder {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .admin-item-card__header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-item-card__order {
        justify-content: flex-start;
    }

    .admin-item-card__grid {
        grid-template-columns: 1fr;
    }

    .admin-item-card__field--title,
    .admin-item-card__field--question,
    .admin-item-card__field--placeholder {
        grid-column: auto;
    }

    .admin-item-card__active {
        width: 100%;
    }
}

.portal-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 2.75rem;
    padding: 0.7rem 1rem;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;

    color: #ffffff;
    text-decoration: none;

    background: #1f6f4a;
    border: 1px solid #1f6f4a;
    border-radius: 0.75rem;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.portal-card__action:hover {
    background: #185c3d;
    border-color: #185c3d;
    transform: translateY(-1px);
}

.portal-card__action:focus-visible {
    outline: 3px solid
        rgba(31, 111, 74, 0.25);
    outline-offset: 3px;
}

/*
|--------------------------------------------------------------------------
| Dashboard-Einleitung
|--------------------------------------------------------------------------
*/

.dashboard-intro {
    max-width: 44rem;
    margin-bottom: 2rem;
}

.dashboard-intro__eyebrow {
    margin: 0 0 0.4rem;

    font-size: 0.8rem;
    font-weight: 700;

    color: #64748b;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dashboard-intro__title {
    margin: 0;

    font-size: clamp(
        1.75rem,
        4vw,
        2.5rem
    );
    line-height: 1.15;

    color: #0f172a;
}

.dashboard-intro__description {
    margin: 0.8rem 0 0;

    font-size: 1rem;
    line-height: 1.65;

    color: #475569;
}

/*
|--------------------------------------------------------------------------
| PortalSection
|--------------------------------------------------------------------------
*/

.portal-section {
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;

    border-bottom: 1px solid #e9edf2;
}

.portal-section__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.portal-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;

    min-width: 0;
}

.portal-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 2rem;
    height: 2rem;

    font-size: 1rem;

    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
}

.portal-section__text {
    min-width: 0;
}

.portal-section__title {
    margin: 0;

    font-size: 1.22rem;
    line-height: 1.25;

    color: #0f172a;
}

.portal-section__description {
    max-width: 42rem;
    margin: .25rem 0 0;

    font-size: 0.95rem;
    line-height: 1.55;

    color: #64748b;
}

.portal-section__actions {
    flex: 0 0 auto;
}

.portal-section__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 2.5rem;
    padding: 0.65rem 0.95rem;

    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;

    color: #1f6f4a;
    text-decoration: none;

    background: #ffffff;
    border: 1px solid #b7d7c8;
    border-radius: 0.7rem;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.portal-section__action:hover {
    background: #f0f9f4;
    border-color: #1f6f4a;
    transform: translateY(-1px);
}

.portal-section__action:focus-visible {
    outline: 3px solid
        rgba(31, 111, 74, 0.25);
    outline-offset: 3px;
}

/*
|--------------------------------------------------------------------------
| Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 640px) {
    .pwa-install-hint.is-visible {
        display: flex;
    }

    .portal-page-header {
        gap: 0.85rem;
        padding: 0.95rem 1rem;
        margin-bottom: 1.25rem;
    }

    .portal-page-header__title {
        font-size: 1.5rem;
    }

    .portal-page-header__subtitle {
        margin-top: 0.2rem;
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .portal-page-header__actions {
        gap: 0.55rem;
    }

    .portal-page-header__user {
        justify-self: start;
        padding: 0;

        color: #4b5563;
        background: transparent;
        border: 0;

        font-size: 0.9rem;
        text-align: left;
    }

    .portal-navigation__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .portal-navigation__link {
        min-height: 3rem;
        padding: 0.65rem 0.55rem;
        font-size: 0.85rem;
    }

    .portal-navigation__icon {
        font-size: 0.95rem;
    }
}

/*
|--------------------------------------------------------------------------
| Dashboard-Bereiche
|--------------------------------------------------------------------------
*/

.dashboard-section + .dashboard-section {
    margin-top: 2rem;
}

/*
|--------------------------------------------------------------------------
| PortalStatistic
|--------------------------------------------------------------------------
*/

.portal-statistic-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(180px, 1fr)
        );

    gap: 1rem;
}

.portal-statistic {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;

    padding: 1.15rem;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 0.85rem;

    box-shadow:
        0 6px 18px
        rgba(15, 23, 42, 0.05);
}

.portal-statistic__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 2.4rem;
    height: 2.4rem;

    font-size: 1.15rem;
    line-height: 1;

    background: #f1f5f9;
    border-radius: 0.7rem;
}

.portal-statistic__content {
    min-width: 0;
}

.portal-statistic__value {
    margin: 0;

    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;

    color: #0f172a;
}

.portal-statistic__label {
    margin: 0.35rem 0 0;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;

    color: #334155;
}

.portal-statistic__description {
    margin: 0.35rem 0 0;

    font-size: 0.8rem;
    line-height: 1.45;

    color: #64748b;
}

/*
|--------------------------------------------------------------------------
| PortalEmptyState
|--------------------------------------------------------------------------
*/

.portal-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 2.5rem 1.5rem;

    text-align: center;

    background: #ffffff;

    border: 1px dashed #cbd5e1;
    border-radius: 1rem;
}

.portal-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 3.5rem;
    height: 3.5rem;

    margin-bottom: 1rem;

    font-size: 1.75rem;
    line-height: 1;

    background: #f1f5f9;
    border-radius: 1rem;
}

.portal-empty-state__content {
    max-width: 34rem;
}

.portal-empty-state__title {
    margin: 0;

    font-size: 1.25rem;
    line-height: 1.3;

    color: #0f172a;
}

.portal-empty-state__description {
    margin: 0.65rem 0 0;

    font-size: 0.95rem;
    line-height: 1.6;

    color: #64748b;
}

.portal-empty-state__actions {
    margin-top: 1.25rem;
}

.portal-empty-state__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 2.75rem;
    padding: 0.7rem 1rem;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;

    color: #ffffff;
    text-decoration: none;

    background: #1f6f4a;
    border: 1px solid #1f6f4a;
    border-radius: 0.75rem;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.portal-empty-state__action:hover {
    background: #185c3d;
    border-color: #185c3d;
    transform: translateY(-1px);
}

.portal-empty-state__action:focus-visible {
    outline: 3px solid
        rgba(31, 111, 74, 0.25);

    outline-offset: 3px;
}

/*
|--------------------------------------------------------------------------
| Barrierefreiheit
|--------------------------------------------------------------------------
*/

.portal-visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}

/*
|--------------------------------------------------------------------------
| PortalToolbar
|--------------------------------------------------------------------------
*/

.portal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    margin-bottom: 1.25rem;
    padding: 1rem;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 0.85rem;

    box-shadow:
        0 5px 16px
        rgba(15, 23, 42, 0.04);
}

.portal-toolbar__form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;

    flex: 1;
    min-width: 0;
}

.portal-toolbar__field {
    min-width: 0;
}

.portal-toolbar__search {
    position: relative;

    display: flex;
    align-items: center;
}

.portal-toolbar__search-icon {
    position: absolute;
    left: 0.85rem;

    font-size: 0.9rem;
    line-height: 1;

    pointer-events: none;
}

.portal-toolbar__input,
.portal-toolbar__select {
    min-height: 2.65rem;

    font: inherit;
    font-size: 0.9rem;

    color: #0f172a;

    background: #ffffff;

    border: 1px solid #cbd5e1;
    border-radius: 0.7rem;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.portal-toolbar__input {
    width: min(22rem, 100%);
    padding: 0.65rem 0.85rem 0.65rem 2.4rem;
}

.portal-toolbar__select {
    min-width: 11rem;
    padding: 0.65rem 2.2rem 0.65rem 0.85rem;
}

.portal-toolbar__input:focus,
.portal-toolbar__select:focus {
    border-color: #1f6f4a;

    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(31, 111, 74, 0.15);
}

.portal-toolbar__submit {
    min-height: 2.65rem;
    padding: 0.65rem 0.95rem;

    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;

    color: #334155;

    background: #f8fafc;

    border: 1px solid #cbd5e1;
    border-radius: 0.7rem;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.portal-toolbar__submit:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.portal-toolbar__actions {
    flex: 0 0 auto;
}

.portal-toolbar__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;

    min-height: 2.65rem;
    padding: 0.65rem 1rem;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;

    color: #ffffff;
    text-decoration: none;

    background: #1f6f4a;

    border: 1px solid #1f6f4a;
    border-radius: 0.7rem;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.portal-toolbar__action:hover {
    background: #185c3d;
    border-color: #185c3d;
    transform: translateY(-1px);
}

.portal-toolbar__action:focus-visible,
.portal-toolbar__submit:focus-visible {
    outline: 3px solid
        rgba(31, 111, 74, 0.25);

    outline-offset: 3px;
}


/*
|--------------------------------------------------------------------------
| Sehr kleine Displays
|--------------------------------------------------------------------------
*/

@media (max-width: 360px) {
    .portal-navigation__list {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| PortalCard – Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 520px) {
    .portal-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portal-card {
        padding: 1.15rem;
        gap: .65rem;
        border-radius: 0.85rem;
    }

    .portal-card__icon {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.3rem;
    }

    .portal-card__title {
        font-size: 1.08rem;
    }

    .portal-card__description {
        font-size: 0.9rem;
    }

    .portal-card__action {
        width: 100%;
    }

    .portal-card__actions {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| PortalSection – Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 520px) {
    .portal-section {
        margin-bottom: 1rem;
        padding-bottom: 0.85rem;
    }

    .portal-section__content {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .portal-section__icon {
        width: 2.25rem;
        height: 2.25rem;

        font-size: 1.1rem;
    }

    .portal-section__title {
        font-size: 1.18rem;
    }

    .portal-section__description {
        font-size: 0.9rem;
    }

    .portal-section__actions,
    .portal-section__action {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| PortalStatistic – Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 520px) {
    .portal-statistic-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .portal-statistic {
        padding: 1rem;
    }

    .portal-statistic__value {
        font-size: 1.55rem;
    }
}

/*
|--------------------------------------------------------------------------
| PortalEmptyState – Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 520px) {
    .portal-empty-state {
        padding: 2rem 1rem;
    }

    .portal-empty-state__icon {
        width: 3rem;
        height: 3rem;

        font-size: 1.5rem;
    }

    .portal-empty-state__title {
        font-size: 1.12rem;
    }

    .portal-empty-state__description {
        font-size: 0.9rem;
    }

    .portal-empty-state__actions,
    .portal-empty-state__action {
        width: 100%;
    }
}

/*
|--------------------------------------------------------------------------
| PortalToolbar – Mobil
|--------------------------------------------------------------------------
*/

@media (max-width: 680px) {
    .portal-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .portal-toolbar__form {
        align-items: stretch;
        flex-direction: column;
    }

    .portal-toolbar__field,
    .portal-toolbar__input,
    .portal-toolbar__select,
    .portal-toolbar__submit,
    .portal-toolbar__actions,
    .portal-toolbar__action {
        width: 100%;
    }

    .portal-toolbar__select {
        min-width: 0;
    }
}
