/* Salon CMS - Default Theme Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Mobile Navigation Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Hero Section */
/* Announcements */
.announcements {
    padding: 1.5rem 0;
    background: transparent;
}

.announcement {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.announcement:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.announcement:last-child {
    margin-bottom: 0;
}

.announcement-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.8;
}

.announcement-content {
    flex: 1;
    min-width: 0;
}

.announcement-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.announcement-message {
    line-height: 1.5;
    font-size: 0.875rem;
    opacity: 0.9;
}

.announcement-info {
    background: rgba(227, 242, 253, 0.6);
    border-left-color: #64b5f6;
    color: #1976d2;
}

.announcement-info .announcement-title {
    color: #1565c0;
}

.announcement-success {
    background: rgba(232, 245, 233, 0.6);
    border-left-color: #81c784;
    color: #388e3c;
}

.announcement-success .announcement-title {
    color: #2e7d32;
}

.announcement-warning {
    background: rgba(255, 243, 224, 0.6);
    border-left-color: #ffb74d;
    color: #f57c00;
}

.announcement-warning .announcement-title {
    color: #e65100;
}

.announcement-error {
    background: rgba(255, 235, 238, 0.6);
    border-left-color: #e57373;
    color: #d32f2f;
}

.announcement-error .announcement-title {
    color: #c62828;
}

@media (max-width: 768px) {
    .announcements {
        padding: 1.5rem 0;
    }
    
    .announcement {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .announcement-icon {
        width: 32px;
        height: 32px;
        padding: 0.4rem;
    }
    
    .announcement-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .announcement-title {
        font-size: 1rem;
    }
    
    .announcement-message {
        font-size: 0.9rem;
    }
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* Services */
.services {
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-description-preview {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1rem 0;
    min-height: 3em;
}

.service-click-hint {
    color: #3498db;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.service-card h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0.5rem 0;
    line-height: 1.3;
    min-height: 2.6em;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.service-modal-close:hover,
.service-modal-close:focus {
    color: #000;
}

.service-modal-content h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.75rem;
}

.service-modal-body {
    margin-top: 1rem;
}

.service-modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-modal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-modal-info .duration,
.service-modal-info .price {
    font-size: 1rem;
    color: #333;
}

.service-modal-info strong {
    color: #1a1a1a;
    font-weight: 600;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-info .price {
    margin-left: auto;
}

.price {
    font-weight: bold;
    color: #3498db;
    font-size: 1.25rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-content > div:first-child {
    text-align: center;
}

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-image-wrapper {
    text-align: center;
}

@media (min-width: 768px) {
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 2rem;
    }
    
    .about-content > div:first-child {
        text-align: left;
    }
}

/* Reviews */
.reviews {
    padding: 4rem 0;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
}

.rating {
    margin-bottom: 1rem;
}

.star {
    color: #ddd;
    font-size: 1.5rem;
}

.star.filled {
    color: #f39c12;
}



.review-comment {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.review-author {
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 1.5rem 0.5rem;
    }
    
    .services h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 0.5rem;
        margin: 0;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .service-card h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        overflow: hidden;
        font-size: 0.75rem;
        margin: 0.3rem 0;
        line-height: 1.1;
    }
    
    .service-description-preview {
        display: none;
    }
    
    .service-click-hint {
        display: block;
        font-size: 0.65rem;
        margin-top: 0.25rem;
        line-height: 1.2;
    }
    
    .service-image-wrapper {
        margin-bottom: 0.3rem;
        height: 80px;
        overflow: hidden;
    }
    
    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-info {
        margin-top: auto;
        font-size: 0.75rem;
        padding-top: 0.4rem;
        border-top: 1px solid #eee;
    }
    
    .service-info .duration {
        display: none;
    }
    
    .service-info .price {
        font-weight: 600;
        font-size: 0.8rem;
    }


.contact-details {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-details h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.google-maps-wrapper {
    margin-top: 2rem;
}

.google-maps-wrapper h3 {
    margin-bottom: 1rem;
    color: #333;
}

.google-maps-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.opening-hours {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.opening-hours h3 {
    margin-bottom: 1rem;
    color: #333;
}

.opening-hours p {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.6;
}

.opening-hours a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.opening-hours a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.opening-hours ul {
    list-style: none;
}

.opening-hours li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opening-hours li strong {
    min-width: 100px;
    display: inline-block;
}

/* Auth Forms */
.auth-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.auth-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.auth-form h1 {
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.auth-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.auth-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.auth-form p {
    margin-top: 1.5rem;
    text-align: center;
    color: #666;
}

.auth-form p a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.auth-form p a:hover {
    text-decoration: underline;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.footer-section p strong {
    color: #fff;
    font-weight: 600;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-links a:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button,
.cookie-buttons a {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
}

.cookie-buttons button:hover,
.cookie-buttons a:hover {
    background-color: #2980b9;
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 4rem 0;
}

.error-page h1 {
    font-size: 6rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.error-page h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Booking Form Styles */
#booking-form {
    max-width: 700px;
    margin: 2rem auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#booking-form .form-group {
    margin-bottom: 1.5rem;
}

#booking-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

#booking-form .form-group input[type="date"],
#booking-form .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#booking-form .form-group input[type="date"]:focus,
#booking-form .form-group select:focus {
    outline: none;
    border-color: #3498db;
}

#booking-form .form-group select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}


/* Booking Summary - Improved Readability */
#booking-summary {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#booking-summary h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

#booking-summary p {
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
}

#booking-summary strong {
    color: #1a1a1a;
    font-weight: 700;
    min-width: 140px;
    display: inline-block;
    margin-right: 0.5rem;
}

#summary-payment-info {
    padding: 1rem 1.25rem;
    background: #fff9e6;
    border: 2px solid #ffc107;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
    margin-top: 1.5rem;
    color: #856404;
    font-size: 1rem;
    line-height: 1.6;
}

#summary-payment-info strong {
    color: #856404;
    font-weight: 700;
    display: inline;
    min-width: auto;
    margin-right: 0.25rem;
}
/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.time-slot-btn {
    padding: 1.25rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot-btn:hover {
    border-color: #3498db;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.time-slot-btn.active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.time-slot-btn:active {
    transform: translateY(0);
}

.time-slots-grid p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1rem;
    text-align: center;
}

#booking-form .form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}











#booking-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#booking-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

#booking-form .btn:active {
    transform: translateY(0);
}

/* Loading state */
#booking-form select[disabled] {
    position: relative;
}

#booking-form select[disabled]::after {
    content: "Laden...";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(52, 152, 219, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }
    
    .nav-menu-active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    /* Overlay when menu is open */
    .nav-menu-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .hero {
        min-height: 300px;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr !important;
    }
    
    .about-content > div:first-child {
        text-align: center !important;
    }
    
    #cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content p {
        margin: 0;
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .cookie-buttons button,
    .cookie-buttons a {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    #booking-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    
    
    
    
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .time-slot-btn {
        padding: 1rem 0.75rem;
        font-size: 1rem;
        min-height: 50px;
    }

    #booking-summary {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    #booking-summary h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    #booking-summary p {
        font-size: 1rem;
        margin: 0.875rem 0;
    }
    
    #booking-summary strong {
        min-width: 120px;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    #summary-payment-info {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }}

@media (max-width: 480px) {
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slot-btn {
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
        min-height: 50px;
    }
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
    font-weight: 600;
}

.team-name {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.team-position {
    color: #666;
    font-weight: 500;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-contact {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.team-contact-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.team-contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.team-social {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.team-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.team-social-facebook {
    color: #1877f2;
}

.team-social-facebook:hover {
    background: #1877f2;
    color: #fff;
    transform: translateY(-2px);
}

.team-social-instagram {
    color: #e4405f;
}

.team-social-instagram:hover {
    background: #e4405f;
    color: #fff;
    transform: translateY(-2px);
}

.team-social-linkedin {
    color: #0077b5;
}

.team-social-linkedin:hover {
    background: #0077b5;
    color: #fff;
    transform: translateY(-2px);
}

.team-empty {
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.team-empty p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Vacatures Section */
.vacatures-section {
    padding: 4rem 0;
}

.vacatures-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.vacatures-list {
    display: grid;
    gap: 2rem;
}

.vacature-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

.vacature-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.vacature-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vacature-title-wrapper {
    flex: 1;
    min-width: 200px;
}

.vacature-title {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.75rem;
    font-weight: 600;
}

.vacature-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.vacature-title a:hover {
    color: #3498db;
}

.vacature-featured {
    background: #ffc107;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

.vacature-closing-date {
    color: #666;
    font-size: 0.875rem;
    white-space: nowrap;
}

.vacature-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vacature-meta-item {
    color: #666;
    font-size: 0.95rem;
}

.vacature-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.vacature-link {
    display: inline-block;
    margin-top: 0.5rem;
}

.vacatures-empty {
    text-align: center;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.vacatures-empty-text {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 0.5rem 0;
}

.vacatures-empty-subtext {
    color: #999;
    margin: 0;
}

/* Giftcard Section */
.giftcard-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.giftcard-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: #333;
}

.giftcard-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.giftcard-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.giftcard-form .form-group {
    margin-bottom: 1.5rem;
}

.giftcard-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.giftcard-form input[type="number"],
.giftcard-form input[type="text"],
.giftcard-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.giftcard-form input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.giftcard-form small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.875rem;
}

.giftcard-form .btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.giftcard-form .form-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.giftcard-form .form-info p {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
}

.giftcard-form .form-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.giftcard-form .form-info li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Vacature Detail Section */
.vacature-detail-section {
    padding: 2rem 0 4rem;
}

.vacature-back-link {
    color: #3498db;
    text-decoration: none;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: color 0.3s;
    font-size: 1rem;
}

.vacature-back-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.vacature-detail {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.vacature-detail-header {
    background: #fff;
    color: #333;
    margin-bottom: 2rem;
    padding: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    border-radius: 8px;
}

.vacature-detail-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vacature-detail-title-group {
    flex: 1;
    min-width: 200px;
}

.vacature-detail-title {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.vacature-detail-closing-date {
    color: #856404;
    font-size: 0.875rem;
    background: #fff3cd;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
}

.vacature-detail-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.vacature-detail-header .vacature-meta-item {
    color: #444;
    font-size: 1rem;
}

.vacature-detail-content {
    margin-bottom: 2rem;
}

.vacature-detail-section-item {
    margin-bottom: 2rem;
}

.vacature-detail-section-item:last-child {
    margin-bottom: 0;
}

.vacature-detail-section-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.vacature-detail-text {
    line-height: 1.9;
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.vacature-detail-text p {
    margin-bottom: 1rem;
    color: #333;
}

.vacature-detail-text p:last-child {
    margin-bottom: 0;
}

.vacature-apply {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.vacature-apply-title {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
}

.vacature-apply-text {
    margin: 0 0 1rem 0;
    color: #333;
    line-height: 1.9;
    font-size: 1.05rem;
}

.vacature-apply-email {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.vacature-apply-email:hover {
    text-decoration: underline;
}

.vacature-apply-btn {
    display: inline-block;
    margin-top: 0.5rem;
}

.vacature-related {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vacature-related-title {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.75rem;
    font-weight: 600;
}

.vacature-related-list {
    display: grid;
    gap: 1.5rem;
}

.vacature-related-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
}

.vacature-related-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.vacature-related-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.vacature-related-card-title a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.vacature-related-card-title a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.vacature-related-card-description {
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vacature-related-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: inline-block;
    font-weight: 500;
    transition: color 0.3s;
}

.vacature-related-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Booking Page Additional Styles */
.booking-section {
    padding: 2rem 0 4rem;
}

.booking-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #333;
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}

.time-slots-placeholder {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1rem;
    text-align: center;
    color: #666;
    font-style: italic;
}

.time-slots-error {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1rem;
    text-align: center;
    color: #d32f2f;
    font-style: italic;
}

.booking-summary {
    display: none;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.booking-summary-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.booking-summary-item {
    margin: 0.75rem 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.booking-summary-item strong {
    color: #1a1a1a;
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

.booking-payment-info {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fff9e6;
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 0.95rem;
    font-style: italic;
}

/* Gift Card Section in Booking */
.gift-card-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.gift-card-section-title {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.gift-card-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.gift-card-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.gift-card-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.gift-card-validate-btn {
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.gift-card-message {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.gift-card-error {
    color: #d32f2f;
}

.gift-card-success {
    color: #2e7d32;
}

.gift-card-warning {
    color: #ff9800;
}

.gift-card-info {
    display: none;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #e8f5e9;
    border-radius: 4px;
    border: 1px solid #c8e6c9;
}

.gift-card-info-item {
    margin: 0.25rem 0 0 0;
    color: #2e7d32;
    font-size: 0.95rem;
}

.gift-card-info-item:first-child {
    margin-top: 0;
}

.gift-card-info-item strong {
    color: #1b5e20;
    font-weight: 600;
}

.payment-method-note {
    font-size: 0.875rem;
    color: #666;
    margin-left: 0.5rem;
}

.gift-card-remove-btn {
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

.btn-secondary {
    background-color: #667eea;
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background-color: #5568d3;
}

.btn-danger {
    background-color: #dc3545;
    color: #fff;
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Customer Dashboard Styles */
.customer-dashboard {
    padding: 2rem 0;
    min-height: 60vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h1 {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-card h2 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.booking-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}

.booking-date strong {
    font-size: 1.1rem;
    color: #333;
    display: block;
}

.booking-date span {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.booking-details {
    flex: 1;
}

.booking-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.booking-details p {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.booking-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-no_show {
    background: #f8d7da;
    color: #721c24;
}

.empty-state {
    text-align: center;
    padding: 2rem;
}

.empty-state p {
    color: #666;
    margin-bottom: 1rem;
}

.dashboard-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.btn-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Customer Bookings Styles */
.customer-bookings {
    padding: 2rem 0;
    min-height: 60vh;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-header h1 {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.filters {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-form .form-group button,
.filter-form .form-group .btn {
    margin-right: 0.75rem;
}

.filter-form .form-group .btn:last-child {
    margin-right: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group select,
.form-group input[type="date"] {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.bookings-container {
    margin-top: 2rem;
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.booking-date-time {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.booking-date-time .date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.booking-date-time .time {
    font-size: 1rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 4px;
}

.booking-body h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    color: #333;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.info-item {
    font-size: 0.95rem;
    color: #666;
}

.info-item strong {
    color: #333;
    margin-right: 0.5rem;
}

/* Customer Profile Styles */
.customer-profile {
    padding: 2rem 0;
    min-height: 60vh;
}

.profile-form-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-form h2 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.input-disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.form-help {
    color: #666;
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.form-help-text {
    color: #666;
    margin-bottom: 1rem;
}

.form-divider {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (max-width: 768px) {
    .dashboard-header,
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .dashboard-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .dashboard-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .page-header .btn {
        width: 100%;
        text-align: center;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
    
    .booking-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-date {
        min-width: auto;
        align-items: flex-start;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

