/* =============================================================================
			   Buchungsportal – custom.css
			   Loaded in: partner/guidecustomer/landing-page/base.html.twig
			   Images path: ../images/
			============================================================================= */

/* -----------------------------------------------------------------------------
   Design tokens
----------------------------------------------------------------------------- */
:root {
    /*--c-primary:      #4D2764;*/
    /*--c-primary-dark: #351748;*/
    --c-primary-dark: #4D2764;
    --c-primary:      #4D2764;
    --c-primary-light: #d2c4da;
    --c-primary-rgb:  77, 39, 100;
    --c-accent:       #d2c4da;
    --c-accent-mid:   #a08aac;
    --c-light:        #f8f5fa;
    --c-muted:        #7a6685;
    --c-text:         #1a0a22;
    --c-white:        #ffffff;
    --c-black:        #000000;
    --c-border:       #e4dcea;

    --font-display: 'LiberationSans', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --font-text:    'Arial', 'Helvetica Neue', 'Helvetica', 'sans-serif';

    --radius:     8px;
    --shadow:     0 4px 20px rgba(var(--c-primary-rgb), 0.10);
    --transition: 0.2s ease;
}

@font-face {
    font-family: 'LiberationSans';
    font-display: swap;
    font-weight: normal;
    font-style: normal;
    src: url("../../fonts/LiberationSans-Regular-webfont-LuXpnQq.woff") format('woff');
    /*src: url('../font/LiberationSans-Regular-webfont.woff2') format('woff2'), url('../font/LiberationSans-Regular-webfont.woff') format('woff');*/
}

/* -----------------------------------------------------------------------------
   Base
----------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

/* -----------------------------------------------------------------------------
   Bootstrap overrides
----------------------------------------------------------------------------- */
.btn-primary {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
}

.btn-secondary{
    background-color: var(--c-primary-light);
    border-color: var(--c-primary-light);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--c-primary-dark);
    border-color: var(--c-primary-dark);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--c-primary-dark);
    border-color: var(--c-primary-dark);
    box-shadow: 0 4px 14px rgba(var(--c-primary-rgb), 0.30);
}

.btn-outline-primary {
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.btn-outline-primary:hover {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
}

label,
.col-form-label {
    color: var(--c-primary);
    font-weight: 600;
}

/* -----------------------------------------------------------------------------
   Navbar
----------------------------------------------------------------------------- */
.bp-navbar {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(var(--c-primary-rgb), 0.06);
}

.bp-nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--c-primary) !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 4px;
    transition: background var(--transition);
}

.bp-nav-link:hover {
    background: var(--c-light);
}

.bp-nav-link.bp-nav-cta {
    background: var(--c-primary-light);
    color: var(--c-primary);
}


.bp-nav-link.bp-nav-login {
    border: 2px solid var(--c-primary);
    color: var(--c-primary) !important;
}

.bp-nav-link.bp-nav-login:hover {
    background: var(--c-primary);
    color: var(--c-white) !important;
}

.bp-nav-separator {
    width: 1px;
    height: 24px;
    background: var(--c-border);
    margin: 0 1rem;
    flex-shrink: 0;
}

.bp-nav-divider-mobile {
    border-color: var(--c-border);
    margin: 0.5rem 0;
    width: 100%;
}

/* On mobile: auth buttons take full width */
@media (max-width: 991.98px) {
    .bp-nav-auth .nav-item {
        width: 100%;
    }

    .bp-nav-auth .bp-nav-link {
        display: block;
        text-align: center;
        padding: 0.6rem 1rem !important;
    }

    .bp-nav-auth .bp-nav-login {
        margin-bottom: 0.4rem;
    }
}

/* -----------------------------------------------------------------------------
   Section helpers
----------------------------------------------------------------------------- */
.bp-section     { padding: 5rem 0; }
/*.bp-section-alt { background: var(--c-light); }*/
.bp-section-alt { background: white; }

.headline1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: var(--c-primary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.level-card__price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.50);
    margin: 1rem 0 0;
    letter-spacing: 0.5px;
}

.level-card--featured .level-card__price {
    color: var(--c-muted);
}

.headline2 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c-accent-mid);
    margin-bottom: 1.25rem;
}

.bp-divider {
    width: 40px;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
    margin: 0.75rem 0 1.5rem;
}

.bp-divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* -----------------------------------------------------------------------------
   Footer
----------------------------------------------------------------------------- */
.bp-footer {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.83rem;
    padding: 1.75rem 0;
}

.bp-footer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition);
}

.bp-footer a:hover { color: var(--c-accent); }

/* -----------------------------------------------------------------------------
   Hero – landing page
----------------------------------------------------------------------------- */
.bp-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-primary-dark);
}

.bp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/background-img-1-4w_c4s0.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(0.5);
    transform: scale(1.03);
    transition: transform 8s ease;
}

.bp-hero:hover .bp-hero__bg {
    transform: scale(1.0);
}

.bp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        140deg,
        rgba(53, 23, 72, 0.6) 0%,
        rgba(77, 39, 100, 0.3) 55%,
        rgba(210, 196, 218, 0.02) 100%
    );
}

.bp-hero__inner {
    position: relative;
    z-index: 2;
    padding: 6rem 0 5rem;
}

.bp-hero .headline2 { color: var(--c-accent); }

.bp-hero .headline1 {
    color: var(--c-white);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    max-width: 820px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.bp-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.bp-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2rem;
}

.bp-hero__bullets li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.bp-hero__bullets li i {
    color: var(--c-primary-light);
    font-size: 0.85rem;
}

/* -----------------------------------------------------------------------------
   Leistungen cards
----------------------------------------------------------------------------- */
.bp-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}


.bp-card__icon {
    width: 48px;
    height: 48px;
    background: var(--c-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    transition: background var(--transition);
}

.bp-card:hover .bp-card__icon {
    background: rgba(77, 39, 100, 0.10);
}

.bp-card__icon i {
    font-size: 1.2rem;
    color: var(--c-primary);
}

.bp-card h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-primary);
    margin-bottom: 0.6rem;
}

.bp-card p {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.7;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   Level section
----------------------------------------------------------------------------- */
#level {
    background: var(--c-primary-dark);
}

#level .headline1 { color: var(--c-white); }
#level .headline2 { color: var(--c-accent); }
#level .bp-divider { background: var(--c-accent-mid); }

#level .lead {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin: 0 auto;
}

.level-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 2.25rem 1.75rem;
    height: 100%;
    text-align: center;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

/*.level-card:hover {*/
/*    transform: translateY(-4px);*/
/*    background: rgba(255, 255, 255, 0.08);*/
/*    border-color: rgba(210, 196, 218, 0.25);*/
/*}*/

.level-card__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
}

.level-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--c-white);
    margin-bottom: 0.4rem;
}

.level-card__tagline {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.level-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    text-align: left;
}

.level-card__features li {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.72);
    padding: 0.38rem 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.level-card__features li:last-child { border-bottom: none; }

.level-card__features li i {
    color: rgba(255, 255, 255, 0.30);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.78rem;
}

.level-card__cta {
    display: block;
    width: 100%;
    padding: 0.7rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all var(--transition);
    text-align: center;
}

.level-card__cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--c-white);
}

.level-card--featured {
    background: var(--c-white);
    border: 2px solid var(--c-accent-mid);
    transform: scale(1.04);
    box-shadow: 0 12px 48px rgba(77, 39, 100, 0.40);
}

/*.level-card--featured:hover {*/
/*    transform: scale(1.04) translateY(-4px);*/
/*}*/

.level-card--featured .level-card__badge {
    /*background: var(--c-primary);*/
    background: var(--c-primary-light);
    color: var(--c-white);
}

.level-card--featured h3             { color: var(--c-primary); }
.level-card--featured .level-card__tagline  { color: var(--c-muted); }

.level-card--featured .level-card__features li {
    color: var(--c-text);
    border-bottom-color: var(--c-border);
}

.level-card--featured .level-card__features li i { color: var(--c-primary); }

.level-card--featured .level-card__cta {
    /*background: var(--c-primary);*/
    background: var(--c-primary-light);
    /*border-color: var(--c-primary);*/
    border-color: var(--c-primary-light);
    color: var(--c-white);
}

.level-card--featured .level-card__cta:hover {
    background: var(--c-primary-dark);
    border-color: var(--c-primary-dark);
    color: var(--c-white);
    cursor: pointer;
}

.uberschrift-gross{
    text-transform: uppercase;
}

/* -----------------------------------------------------------------------------
   Prozess steps
----------------------------------------------------------------------------- */
.prozess-step {
    text-align: center;
    padding: 1rem 0.5rem;
}

.prozess-step__number {
    width: 64px;
    height: 64px;
    background: var(--c-primary-light);
    color: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin: 0 auto 1.25rem;
    transition: background var(--transition), transform var(--transition);
}

.prozess-step:hover .prozess-step__number {
    background: var(--c-primary-dark);
    transform: scale(1.06);
}

.prozess-step h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
}

.prozess-step p {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

.prozess-connector { display: none; }

@media (min-width: 768px) {
    .prozess-connector {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 32px;
    }

    .prozess-connector::after {
        content: '';
        display: block;
        width: 80%;
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            var(--c-accent-mid) 0,
            var(--c-accent-mid) 8px,
            transparent 8px,
            transparent 16px
        );
    }
}

.prozess-note {
    background: rgba(77, 39, 100, 0.04);
    border: 1px solid var(--c-border);
    border-left: 3px solid var(--c-primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1rem 1.5rem;
    font-size: 0.87rem;
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 680px;
    margin: 3rem auto 2.5rem;
}

/* -----------------------------------------------------------------------------
   Anfrage page – header
----------------------------------------------------------------------------- */
.anfrage-header {
    background: var(--c-primary);
    padding: 3.5rem 0 3rem;
}

.anfrage-header .headline2 { color: var(--c-accent); }
.anfrage-header .headline1 { color: var(--c-white); }
.anfrage-header p.lead     { color: rgba(255, 255, 255, 0.70); font-size: 0.95rem; }

.anfrage-body {
    background: var(--c-white);
    padding: 3.5rem 0 5rem;
}

/* -----------------------------------------------------------------------------
   Anfrage page – form card
----------------------------------------------------------------------------- */
.anfrage-form-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow);
}

.form-section-title {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 400;
    color: var(--c-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    font-size: 0.88rem;
    color: var(--c-accent-mid);
}

.anfrage-form-card .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--c-primary);
}

.anfrage-form-card .form-control:focus,
.anfrage-form-card .form-select:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(77, 39, 100, 0.10);
}

.anfrage-form-card .form-text {
    font-size: 0.78rem;
    color: var(--c-muted);
}

.btn-submit {
    background: var(--c-primary);
    color: var(--c-white);
    border: none;
    border-radius: var(--radius);
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-submit:hover {
    background: var(--c-primary-dark);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(77, 39, 100, 0.25);
}

/* -----------------------------------------------------------------------------
   Anfrage page – accordion
----------------------------------------------------------------------------- */
.bp-accordion .accordion-button {
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--c-primary);
    color: var(--c-white);
}

.bp-accordion .accordion-button:not(.collapsed) {
    background: var(--c-primary-dark);
    color: var(--c-white);
    box-shadow: none;
}

.bp-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.bp-accordion .accordion-body {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.75;
}

/* -----------------------------------------------------------------------------
   Anfrage page – price estimate
----------------------------------------------------------------------------- */
#guide-request-price-estimate {
    border-radius: var(--radius);
    border: 1px solid rgba(77, 39, 100, 0.20);
    background: rgba(77, 39, 100, 0.04) !important;
    padding: 1.1rem 1.4rem;
}

#guide-request-price-estimate strong             { color: var(--c-primary); }
#guide-request-price-estimate [data-price-total] { color: var(--c-primary); }

/* -----------------------------------------------------------------------------
   Anfrage page – sidebar
----------------------------------------------------------------------------- */
.anfrage-sidebar {
    position: sticky;
    top: 90px;
}

.info-box {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(77, 39, 100, 0.05);
}

.info-box__icon {
    width: 40px;
    height: 40px;
    background: var(--c-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.info-box__icon i {
    color: var(--c-primary);
    font-size: 1rem;
}

.info-box h6 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--c-primary);
    margin-bottom: 0.4rem;
}

.info-box p,
.info-box li {
    font-size: 0.84rem;
    color: var(--c-muted);
    line-height: 1.7;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--c-border);
}

.info-box ul li:last-child { border-bottom: none; }

.info-box ul li i {
    color: var(--c-accent-mid);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.78rem;
}

.level-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 0.9rem;
    border-radius: 6px;
    background: var(--c-light);
    border: 1px solid var(--c-border);
    margin-bottom: 0.4rem;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}

.level-badge:hover {
    border-color: var(--c-accent-mid);
    background: rgba(77, 39, 100, 0.04);
}

.level-badge__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.level-badge--basis .level-badge__dot   { background: var(--c-accent-mid); }
.level-badge--gold .level-badge__dot    { background: var(--c-primary); }
.level-badge--experte .level-badge__dot { background: var(--c-primary-dark); }

.level-badge__name {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--c-primary);
    flex: 1;
}

.level-badge__tag {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 20px;
    background: var(--c-primary);
    color: var(--c-white);
}

.info-box--note {
    border-left: 3px solid var(--c-primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* -----------------------------------------------------------------------------
   Responsive
----------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .bp-section { padding: 3rem 0; }
    .headline1  { font-size: 1.4rem !important; }
    .headline2  { font-size: 0.72rem !important; }
}




/* -----
Registrierungsseite
 */

.anfrage-form-card .form-control,
.anfrage-form-card .form-select {
    border-color: var(--c-border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    padding: 0.6rem 0.9rem;
}
.anfrage-form-card .form-control:focus,
.anfrage-form-card .form-select:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(77, 39, 100, 0.10);
}
.anfrage-form-card .mb-3,
.anfrage-form-card .mb-4 {
    margin-bottom: 1.1rem !important;
}
.anfrage-form-card .invalid-feedback {
    font-size: 0.8rem;
}

/* --------------------------------
Table : TODO : change this later
-------------------------------------
 */

#touren {
    padding-top: 10px;
    margin: 10px;
}


/* --------------------------
Detail Page : View Details
 */

#guide-request-view-details {
    padding-top: 10px;
    margin: 10px;
}


/* =============================================================================
   Liste: Guide-Anfragen (DataTables & Components)
============================================================================= */

/* Toolbar */
.gr-toolbar {
    padding: 0.25rem 0;
}

.gr-count {
    font-size: 0.88rem;
    color: var(--c-muted);
}

.gr-count strong {
    color: var(--c-primary);
    font-size: 1rem;
}

/* Table base */
.gr-table {
    margin: 0 !important;
    font-size: 0.875rem;
}

.gr-table thead th {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--c-accent-mid);
    background: var(--c-light);
    border-bottom: 2px solid var(--c-border);
    padding: 0.85rem 1rem;
    white-space: nowrap;
}

.gr-table tbody td {
    padding: 0.85rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
}

.gr-table tbody tr:last-child td { border-bottom: none; }
.gr-table tbody tr:hover td { background: var(--c-light); }

/* Row states */
.gr-row--secured td { background: rgba(60, 205, 89, 0.04); }
.gr-row--secured:hover td { background: rgba(60, 205, 89, 0.08) !important; }
.gr-row--cancelled td { opacity: 0.55; }

/* Cell elements */
.gr-tour-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--c-primary);
    font-weight: 400;
}

.gr-date {
    font-variant-numeric: tabular-nums;
    font-size: 0.84rem;
    color: var(--c-text);
}

.gr-link {
    font-size: 0.82rem;
    color: var(--c-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.gr-link:hover {
    color: var(--c-primary-dark);
    text-decoration: underline;
}

.gr-note {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.5;
}

/* Status badges */
.gr-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.gr-badge--pending {
    background: rgba(var(--c-primary-rgb), 0.10);
    color: var(--c-primary);
}

.gr-badge--secured {
    background: #e8f7ec;
    color: #1a7a30;
    border: 1px solid #bce6c8;
}

.gr-badge--cancelled {
    background: #fdf3f2;
    color: #b3261e;
    border: 1px solid #f9dcdb;
}

/* Empty state */
.gr-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.gr-empty__icon {
    width: 72px;
    height: 72px;
    background: var(--c-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.gr-empty__icon i {
    font-size: 1.8rem;
    color: var(--c-accent-mid);
}

.gr-empty h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--c-primary);
    margin-bottom: 0.6rem;
}

.gr-empty p {
    font-size: 0.88rem;
    color: var(--c-muted);
    max-width: 400px;
    margin: 0 auto 1.75rem;
    line-height: 1.75;
}

/* DataTables overrides */
#touren_wrapper .dt-layout-row { padding: 1rem 1.25rem 0.5rem; }

#touren_wrapper .dt-search input {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    padding: 0.45rem 0.85rem;
    color: var(--c-text);
    font-family: var(--font-body);
    transition: border-color var(--transition), box-shadow var(--transition);
}

#touren_wrapper .dt-search input:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb), 0.10);
}

#touren_wrapper .dt-info,
#touren_wrapper .dt-length {
    font-size: 0.80rem;
    color: var(--c-muted);
}

#touren_wrapper .dt-paging .dt-paging-button {
    border: 1px solid var(--c-border) !important;
    border-radius: 4px !important;
    font-size: 0.82rem !important;
    color: var(--c-primary) !important;
    background: var(--c-white) !important;
    margin: 0 2px;
    transition: all var(--transition);
}

#touren_wrapper .dt-paging .dt-paging-button:hover {
    background: var(--c-light) !important;
    border-color: var(--c-accent-mid) !important;
}

#touren_wrapper .dt-paging .dt-paging-button.current {
    background: var(--c-primary) !important;
    border-color: var(--c-primary) !important;
    color: var(--c-white) !important;
    font-weight: 600 !important;
}

.dt-buttons .dt-button {
    background: var(--c-white) !important;
    border: 1px solid var(--c-border) !important;
    border-radius: var(--radius) !important;
    color: var(--c-primary) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    letter-spacing: 0.5px !important;
    padding: 0.4rem 0.9rem !important;
    transition: all var(--transition) !important;
    box-shadow: none !important;
}

.dt-buttons .dt-button:hover {
    background: var(--c-light) !important;
    border-color: var(--c-accent-mid) !important;
}


.bp-card__icon-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
}

.bp-card__icon-wrap h5{
    text-transform: uppercase;
    font-family: var(--font-text) ;
}
