#staylet-booking-app * {
    box-sizing: border-box !important;
}
#staylet-booking-app p {
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}
#staylet-booking-app h3 {
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    color: #0f172a !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}
#staylet-booking-app h4 {
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    color: #1e293b !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
}
#staylet-booking-app ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
#staylet-booking-app li {
    margin: 0 0 8px 0 !important;
    padding: 0 0 0 24px !important;
    position: relative !important;
    line-height: 1.4 !important;
}

#staylet-booking-app.staylet-booking-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 24px;
    max-width: 100% !important; width: 100% !important;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}



#staylet-booking-app .staylet-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

#staylet-booking-app .staylet-step.active {
    display: block;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }

    to { opacity: 1; transform: translateY(0); }
}

#staylet-booking-app .staylet-form-group {
    margin-bottom: 16px;
}

#staylet-booking-app .staylet-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #475569;
}

#staylet-booking-app .staylet-form-group input[type="text"],
#staylet-booking-app .staylet-form-group input[type="email"],
#staylet-booking-app .staylet-form-group input[type="date"],
#staylet-booking-app .staylet-form-group input[type="number"],
#staylet-booking-app .staylet-form-group select,
#staylet-booking-app .staylet-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

#staylet-booking-app .staylet-form-group input:focus,
#staylet-booking-app .staylet-form-group select:focus,
#staylet-booking-app .staylet-form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

#staylet-booking-app .staylet-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

#staylet-booking-app .staylet-card-grid.full-width-cards {
    grid-template-columns: 1fr;
    gap: 16px;
}


@media (min-width: 500px) {
    #staylet-booking-app .staylet-card-grid.full-width-cards {
        grid-template-columns: 1fr 1fr;
    }
}

#staylet-booking-app .staylet-card {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#staylet-booking-app .staylet-card.house-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

#staylet-booking-app .house-tag {
    position: absolute;
    top: -10px;
    left: 12px;
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px !important;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

#staylet-booking-app .price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0ea5e9;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#staylet-booking-app .staylet-card:hover {
    border-color: #bae6fd;
}

#staylet-booking-app .staylet-card.selected {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

#staylet-booking-app .staylet-card h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: #1e293b;
}

#staylet-booking-app .house-card ul {
    margin: 12px 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.85rem;
    color: #475569;
}

#staylet-booking-app .house-card li {
    margin-bottom: 4px;
    padding-left: 20px;
    position: relative;
}

#staylet-booking-app .staylet-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0ea5e9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}

#staylet-booking-app .staylet-btn:hover {
    background: #0284c7;
}

#staylet-booking-app .staylet-btn.secondary {
    background: #e2e8f0;
    color: #475569;
}

#staylet-booking-app .staylet-btn.secondary:hover {
    background: #f1f5f9;
}

#staylet-booking-app .info-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0ea5e9;
    border: 1px solid #bae6fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: serif;
    font-size: 14px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.2s ease;
}

#staylet-booking-app .info-icon:hover {
    background: #0ea5e9;
    color: #fff;
}

#staylet-booking-app .staylet-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

#staylet-booking-app .staylet-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

#staylet-booking-app .staylet-alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

#staylet-booking-app .staylet-alert.warning { background: #fef9c3; color: #854d0e; border: 1px solid #fef08a; }

#staylet-booking-app .staylet-alert.success { background: #dcfce3; color: #166534; border: 1px solid #bbf7d0; }

#staylet-booking-app .staylet-summary-box {
    background: #fff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

#staylet-booking-app .staylet-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #f1f5f9;
}

#staylet-booking-app .staylet-summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.staylet-summary-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
}

#staylet-booking-app .staylet-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 10px;
}
#staylet-booking-app .step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
    transition: all 0.3s ease;
}
#staylet-booking-app .step-dot.active {
    background: #0ea5e9;
    color: white;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.2);
}
#staylet-booking-app .step-dot.completed {
    background: #10b981;
    color: white;
    cursor: pointer;
}
#staylet-booking-app .step-dot.completed:hover {
    background: #059669;
}
#staylet-booking-app .step-line {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    margin: 0 -4px;
    z-index: 1;
}

@media (max-width: 500px) {
    #staylet-booking-app .step-dot {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}
