.dw-feature-booking {
    margin: 0px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Tvinga bort Houzez label-styling */
.dw-feature-booking label {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    color: #333 !important;
    display: block !important;
}

/* Premium input/select */
.dw-feature-booking .dw-input,
.dw-feature-booking select,
.dw-feature-booking input[type="text"] {
    width: 100% !important;
    padding: 12px 14px !important;
   
    border-radius: 8px !important;
    font-size: 15px !important;
    background: #fafafa !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

/* Hover/focus */
.dw-feature-booking .dw-input:focus,
.dw-feature-booking select:focus,
.dw-feature-booking input[type="text"]:focus {
    border-color: #0073e6 !important;
    background: #fff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0,115,230,0.15) !important;
}

/* Readonly fält */
.dw-feature-booking input[readonly] {
    cursor: default !important;
    background: #f3f3f3 !important;
}
.dw-date-badge-container {
    min-height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 8px 10px;
    gap: 6px;
}

.dw-date-badge {
   background: #ffcc00;
    color: #000;
    padding: 0px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    display: inline-block;
}
#dw-total-box {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.dw-total-strong {
    font-weight: 700;
    margin-top: 5px;
    font-size: 16px;
    color: #1BAC6D;
}
.dewally-slot-type-buttons .dewally-book-slot {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    cursor: pointer;
    
}

.dewally-slot-type-buttons .dewally-book-slot.active {
    background: #fcd34d;
    border-color: #d4a100;
    color: #000;
    font-weight: 600;
     border-radius: 8px;
}
@media (max-width: 768px) {
    .dewally-slot-type-buttons{
display: inline-flex;
    margin-bottom: 20px;
    gap: 20px;
}}
/* ------------------------------------------------------ */
/*                PREMIUM KALENDER (NY)                   */
/* ------------------------------------------------------ */

.dw-calendar {
    margin-top: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);

    /* NYTT – matcha .dw-feature-booking */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header (månad + pilar) */
.dw-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
}

.dw-cal-header button {
    background: #f1f5f9;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

.dw-cal-header button:hover {
    background: #e2e8f0;
}

/* Veckodagar */
.dw-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 12px;
    opacity: 0.7;
}

/* Grid */
.dw-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

/* Dagceller */
.dw-cal-day {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 4px;
    text-align: center;
    cursor: pointer;
    transition: 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-height: 48px;
}


/* Dagnummer */
.dw-day-number {
    font-size: 15px;
    font-weight: 600;
}

.dw-day-price {
    font-size: 10px;
    color: #fff;
    background: #1BAC6D;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}


/* Vald dag */
.dw-cal-day.active {
    background: #1BAC6D;
    color: #fff;
    border-color: #158a56;
}

.dw-cal-day.active .dw-day-price {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Bokade dagar */
.dw-cal-day.dw-booked {
    background: #ffe5e5;
    border-color: #ffb3b3;
    color: #b30000;
    cursor: not-allowed;
    opacity: 0.7;
}

.dw-cal-day.dw-booked .dw-day-price {
    background: #b30000;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 10px;
    padding: 0;
}
.dw-cal-day.dw-booked .dw-day-number {
    text-decoration: line-through;
    opacity: 0.;
}

/* Tomma rutor */
.dw-cal-empty {
    height: 48px;
}
.dw-cal-day.dw-past {
    background: #f1f1f1;
    border-color: #ddd;
    color: #999;
    opacity: 0.6;
    cursor: not-allowed;
}

.dw-cal-day.dw-past .dw-day-price {
    background: #ccc;
    color: #666;
}


/* Mobil */
@media (max-width: 480px) {
    .dw-cal-day {
        min-height: 40px;
        padding: 4px 2px;
    }
    .dw-day-number {
        font-size: 13px;
    }
    .dw-day-price {
        font-size: 10px;
    }
}

.dw-feature-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
}

#dw-clear-btn {
    background: #1BAC6D;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

#dw-clear-btn:hover {
    background: #cbd5e1;
}

#dw-total-price {
    font-weight: 700;
    font-size: 15px;
    color: #1BAC6D;
}

/* ------------------------------------------------------ */
/*                 BOKA KNAPP/ knapp vid ej annonser     */
/* ------------------------------------------------------ */

#dw-next-btn {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius:8px;
    border: none;
    background: #1BAC6D;
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

#dw-next-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

/* Wrapper to isolate from Houzez */
.dw-premium-wrapper {
    position: relative;
    z-index: 5;
   
}

.btn-skapa-annons{
    background: #1BAC6D!important;
    font-size: 12px!important;
    font-weight: 700!important;
    text-transform: uppercase!important;
    letter-spacing: 2px!important;
    border-style: none!important;
    border-radius: 8px 8px 8px 8px!important;
    padding: 14px 24px 14px 24px!important;
}


/* ============================================================
   GEMENSAM DESIGN FÖR BOKNINGAR + HÄNDELSER
   ============================================================ */

/* Header */
.dw-header {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 1fr !important;

    background: #ffffff !important;
    color: #444 !important;
    font-weight: 700 !important;

    padding: 14px 16px !important;
    border-radius: 8px !important;
    margin-bottom: 14px !important;
    margin-top: 14px !important;

    box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
}

/* Rows */
.dw-row {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 1fr !important;

    align-items: center !important;

    background: #ffffff !important;
    padding: 14px 16px !important;
    border-radius: 8px !important;
    margin-bottom: 14px !important;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Bild */
.dw-thumb img {
    border-radius: 8px !important;
    width: 80px !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Badges */
.dw-badge {
    display: inline-block !important;
    padding: 0px 10px !important;
    border-radius: 8px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    margin-right: 6px !important;
    text-transform: uppercase;
}

.dw-view  { background: #0dcaf0 !important; color: #fff !important; }
.dw-scroll{ background: #ffc107 !important; color: #fff !important; }
.dw-click { background: #dc3545 !important; color: #fff !important; }
.dw-status-bokad { background: #0dcaf0 !important; color: #fff !important; }

/* Scrollbar */
.dw-scroll-bar {
    width: 100% !important;
    height: 6px !important;
    background: #eee !important;
    border-radius: 4px !important;
    overflow: hidden !important;
}

.dw-scroll-fill {
    height: 100% !important;
    background: #0dcaf0 !important;
}

/* Meta text */
.dw-meta {
    font-size: 13px !important;
   
    color: #555 !important;
}


/* ============================================================
   MOBIL – Bild överst + labels till vänster
   ============================================================ */

@media (max-width: 768px) {
.dw-list > .dw-row:first-child {
    margin-top: 20px !important;
}

    /* Rader – som innan */
    .dw-row {
        display: block !important;
        padding: 14px !important;
    }

    /* Bilden överst, vänsterjusterad */
    .dw-thumb img {
        width: 120px !important;
        height: auto !important;
        border-radius: 8px !important;

        display: block !important;
        margin: 0 0 12px 0 !important;
    }

    /* Alla fält under bilden */
    .dw-row > div {
        margin-bottom: 10px !important;

        /* För labels */
        position: relative !important;
        padding-left: 110px !important;
        min-height: 32px !important;
    }

    /* Labels till vänster */
    .dw-row > div::before {
        content: attr(data-label) ":" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;

        font-size: 12px !important;
        font-weight: 600 !important;
        color: #666 !important;

        width: 100px !important;
        display: block !important;
    }

    /* Bilden ska inte få label */
    .dw-thumb {
        padding-left: 0 !important;
    }

    .dw-thumb::before {
        display: none !important;
    }

    /* Headern som innan */
   .dw-header {
        display: none !important;
}
}
.dw-date-badge-small {
    background: #ffcc00;
    color: #000;
    padding: 0px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin: 3px 4px 3px 0;
    white-space: nowrap;
   
}
.dw-subinfo {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}


/* ================================
   PREMIUM SLOT – STARTSIDAN
   Fullhöjd & luftig version
================================ */

.dw-premium-card {
    position: relative !important;
    display: block !important;
    height: 350px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #000 !important;
}

/* Bakgrundsbild */
.dw-premium-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    filter: brightness(0.55) !important;
}

/* Innehåll */
.dw-premium-content {
    position: absolute !important;
    inset: 0 !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    color: #fff;
}

/* ================================
   TOPPRAD
================================ */

.dw-premium-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.dw-premium-highlight {
    background: #abb8c3 !important;
    color: #fff !important;
    padding: 0px 10px !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    text-transform: uppercase;
}

.dw-premium-logo {
    height: 40px !important;
    width: auto !important;
    border-radius: 8px !important;
}

/* Lokaltyp */
.dw-premium-type-above {
    margin-top: 55px !important;
    margin-bottom: 20px !important;
    font-size: 10px !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    padding: 0px 10px !important;
    border-radius: 8px !important;
    width: fit-content !important;
    text-transform: uppercase;
}

/* ================================
   MITTEN: Vänster + Höger kolumn
================================ */

.dw-premium-middle-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 10px !important;
    color:#fff;
}

.dw-premium-middle-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    flex: 1 !important;
}

.dw-premium-title-wrap h2.dw-premium-title {
    margin: 0 !important;
    font-size: 25px !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.dw-premium-address-wrap .dw-premium-address {
    margin: 0 !important;
    font-size: 14px !important;
    color: #e5e5e5 !important;
}

.dw-premium-middle-right {
    display: flex !important;
    align-items: center !important;
}

.dw-premium-cta {
    background: #fff !important;
    color: #000 !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: 0.2s !important;
    width: fit-content;
}

.dw-premium-cta:hover {
    background: #facc15 !important;
}


.dw-premium-cta:hover {
    background: #facc15 !important;
    color: #000 !important;
}
@media (max-width: 768px) {
    .dw-premium-type-above {
        margin-top: 50px !important;
    }
    .dw-premium-title-wrap h2.dw-premium-title {
        font-size: 20px!important;

}}
/* ============================================================
  Tacksida
   ============================================================ */
.dw-thanks-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}



.dw-thanks-box h2 {
    margin-bottom: 10px;
}

.dw-btn {
    display: inline-block;
    background: #1bac6d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* ============================================================
  Tacksida - mobilt
   ============================================================ */
@media (max-width: 768px) {
    .dw-thanks-box {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }

    .dw-thanks-badges {
        justify-content: center;
    }

    .dw-date-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .dw-btn {
        display: inline-block;
        margin: 20px auto 0 auto;
    }
}

