/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Navigation */
.navbar {
    background: rgba(102, 126, 234, 0.5); /* Transparent */
  backdrop-filter: blur(10px); /* Blurry effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Optional subtle border */
  position: fixed; /* Keeps navbar on top */
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 20px;
    position: relative;
}

.nav-container > * {
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    flex: 1;
    justify-content: flex-start;
    min-width: 0;
    margin-left: 20px;
    margin-right: 20px;
}

.nav-item {
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.nav-item:first-child {
    margin-left: 0;
}

.nav-link {
    color: whitesmoke;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: #764ba2;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sections */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 70px;
}

.section.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop&crop=center') center/cover no-repeat;
    color: white;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-left: 50px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop&crop=center') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff8a80 100%);
    color: white;
    margin-right: 15px;
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(238, 90, 36, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    border-color: white;
}

.btn-full {
    width: 100%;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background: white;
    height: 600px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* Form Styles */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 
                0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    background: white;
}

.total-amount {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Availability Section */
.availability-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

.parking-grid {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.grid-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background-color: #2ecc71;
}

.legend-color.booked {
    background-color: #e74c3c;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.slot {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.slot.available {
    background-color: #2ecc71;
    color: white;
}

.slot.available:hover {
    background-color: #27ae60;
    transform: scale(1.05);
}

.slot.booked {
    background-color: #e74c3c;
    color: white;
    cursor: not-allowed;
}

/* Payment Section */
.payment-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 968px) {
    .payment-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.payment-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.payment-summary h3 {
    margin-bottom: 25px;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.summary-item span:first-child {
    font-weight: 500;
    color: #2c3e50;
    flex-shrink: 0;
}

.summary-item span:last-child {
    text-align: right;
    color: #667eea;
    font-weight: 600;
    word-break: break-word;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: #667eea;
    border-bottom: none;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid #667eea;
}

.payment-methods {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.method-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.method-tab {
    flex: 1;
    padding: 15px;
    border: 2px solid #e1e8ed;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-tab.active {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.method-tab:hover {
    border-color: #667eea;
}

.payment-form {
    display: none;
}

.payment-form.active {
    display: block;
}

.upi-apps {
    margin-top: 20px;
}

.upi-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.upi-option {
    flex: 1;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upi-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .nav-menu {
        justify-content: flex-start;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image i {
        font-size: 8rem;
        margin-top: 30px;
    }
    
    .features {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .booking-form-container {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .availability-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
    
    .payment-container {
        grid-template-columns: 1fr;
        margin: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        margin: 20px;
    }
    
    .method-tabs {
        flex-direction: column;
    }
    
    .upi-options {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary {
        margin-right: 0;
    }
    
    .booking-form-container,
    .contact-info,
    .contact-form,
    .payment-summary,
    .payment-methods {
        padding: 20px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .slot {
        font-size: 0.9rem;
    }
}

/* Animations */
.section {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading and Success States */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.success-message {
    background: #2ecc71;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    animation: slideDown 0.5s ease;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    animation: slideDown 0.5s ease;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a67d8;
}

/* Navigation Auth Styles */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    max-width: 280px;
    flex-shrink: 0;
    margin-left: 20px;
}

.customer-welcome {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
    font-size: 0.85rem;
    vertical-align: middle;
    color: white;
    font-weight: 500;
}

.btn-login, .btn-logout {
    padding: 8px 14px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-login:hover, .btn-logout:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-login, .btn-logout {
    padding: 8px 14px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Car Showcase Styles */
.car-showcase {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.car-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.car-image:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6b6b;
}

.modal-body {
    padding: 30px;
}

.demo-credentials {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.demo-credentials h4 {
    margin-bottom: 10px;
    color: #333;
}

.demo-credentials p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

/* Admin Dashboard Styles */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bookings-table-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bookings-table-container h3 {
    margin-bottom: 20px;
    color: #333;
}

.table-responsive {
    overflow-x: auto;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bookings-table th,
.bookings-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bookings-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
}

.bookings-table tr:hover {
    background-color: #f8f9ff;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
    display: inline-block;
}

.status-active {
    background-color: #2ecc71;
    color: white;
}

.status-completed {
    background-color: #95a5a6;
    color: white;
}

.status-cancelled {
    background-color: #e74c3c;
    color: white;
}

.btn-action {
    padding: 6px 12px;
    margin: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-edit {
    background-color: #3498db;
    color: white;
}

.btn-delete {
    background-color: #e74c3c;
    color: white;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
    .nav-auth {
        display: none;
    }
    
    .customer-welcome {
        max-width: 100%;
        font-size: 0.85rem;
    }
    
    .car-showcase {
        flex-direction: column;
        gap: 15px;
    }
    
    .car-image {
        width: 100px;
        height: 70px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .bookings-table {
        font-size: 0.8rem;
    }
    
    .bookings-table th,
    .bookings-table td {
        padding: 8px;
    }
    
    .payment-summary-cards {
        grid-template-columns: 1fr;
    }
    
    .payment-summary-card {
        padding: 20px;
    }
    
    .payment-summary-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .car-image {
        width: 80px;
        height: 60px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .bookings-table {
        font-size: 0.7rem;
    }
    
    .bookings-table th,
    .bookings-table td {
        padding: 6px;
    }
}

/* Admin Page Specific Styles */
.admin-navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.admin-dashboard {
    padding-top: 70px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.admin-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dashboard-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.dashboard-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1), 
                0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 
                0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 1rem;
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.bookings-section, .payment-details-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    color: #2c3e50;
    margin: 0;
}

.filter-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-controls select,
.filter-controls input {
    padding: 8px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-size: 0.9rem;
}

.filter-controls input {
    min-width: 200px;
}

.parking-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.parking-slot {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.parking-slot.available {
    background: #2ecc71;
    color: white;
}

.parking-slot.booked {
    background: #e74c3c;
    color: white;
}

.parking-slot:hover {
    transform: scale(1.05);
}

.slot-id {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.slot-status {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.booked-by {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

.admin-welcome, .customer-welcome {
    color: white;
    font-weight: 500;
    margin-right: 15px;
}

/* Responsive adjustments for admin page */
@media (max-width: 768px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-controls {
        justify-content: center;
    }
    
    .filter-controls input {
        min-width: 150px;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .parking-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landing Page Styles */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=1080&fit=crop&crop=center') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: floatingBubbles 20s ease-in-out infinite;
}

@keyframes floatingBubbles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.landing-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2), 
                0 0 0 1px rgba(255,255,255,0.1);
    text-align: center;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-header {
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo i {
    font-size: 3rem;
    color: #667eea;
}

.logo h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin: 0;
    font-weight: bold;
}

.tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
}

.user-selection h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2rem;
}

.user-selection p {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.role-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.role-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 
                0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.role-card:hover::before {
    left: 100%;
}

.role-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 
                0 10px 25px rgba(0,0,0,0.1);
}

.customer-card:hover {
    border-color: #667eea;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2), 
                0 10px 25px rgba(102, 126, 234, 0.1);
}

.admin-card:hover {
    border-color: #2c3e50;
    box-shadow: 0 25px 50px rgba(44, 62, 80, 0.2), 
                0 10px 25px rgba(44, 62, 80, 0.1);
}

.role-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.role-card:hover .role-icon {
    transform: scale(1.1) rotate(5deg);
}

.customer-card .role-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.customer-card .role-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.customer-card:hover .role-icon::after {
    opacity: 0.3;
}

.admin-card .role-icon {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
}

.admin-card .role-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-card:hover .role-icon::after {
    opacity: 0.3;
}

.role-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.role-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.role-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.role-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 500;
}

.role-features i {
    color: #2ecc71;
    font-size: 0.9rem;
}

.role-card button {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-card button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.role-card button:hover::before {
    left: 100%;
}

.customer-card button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.admin-card button {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.role-card button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.customer-card button:hover {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.admin-card button:hover {
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.4);
}

.landing-footer {
    border-top: 1px solid #e1e8ed;
    padding-top: 20px;
    color: #7f8c8d;
}

/* Responsive adjustments for landing page */
@media (max-width: 768px) {
    .landing-container {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .role-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .role-card {
        padding: 30px 20px;
    }
    
    .user-selection h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-page {
        padding: 10px;
    }
    
    .landing-container {
        padding: 20px 15px;
    }
    
    .role-card {
        padding: 25px 15px;
    }
    
    .role-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ================================
   Visual polish overrides (safe)
   No behavior/markup changes
================================ */

/* Headings */
.section h2, .dashboard-header h1 {
    letter-spacing: 0.2px;
}

/* Buttons subtle lift */
.btn, .btn-action, .btn-login, .btn-logout {
    transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.btn:hover, .btn-action:hover, .btn-login:hover, .btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Inputs and selects */
input[type="text"], input[type="email"], input[type="date"], input[type="time"], input[type="password"], select, textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}
input:focus, select:focus, textarea:focus {
    transform: translateY(-1px);
}

/* Slots styling */
.slot {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.slot.available {
    background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
}
.slot.booked {
    background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
}

/* Cards and tables */
.stat-card, .payment-summary, .payment-methods, .contact-info, .contact-form, .parking-grid, .bookings-section {
    border: 1px solid rgba(0,0,0,0.06);
}
.bookings-table tr:hover {
    background: #f3f5ff;
}

/* Payment Summary Cards */
.payment-summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-summary-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.payment-summary-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.3);
}

.payment-summary-card:nth-child(2):hover {
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4);
}

.payment-summary-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.payment-summary-card:nth-child(3):hover {
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
}

.payment-summary-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.3);
}

.payment-summary-card:nth-child(4):hover {
    box-shadow: 0 10px 25px rgba(67, 233, 123, 0.4);
}

.payment-summary-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.payment-summary-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
}

.payment-summary-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.payment-summary-value {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Navbar slight shadow */
.navbar {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Improve visibility of Admin "Refresh Data" button */
.admin-actions .btn.btn-secondary {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}

/* Booking Management Styles */
.bookings-management-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bookings-header {
    margin-bottom: 30px;
}

.bookings-header h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2rem;
    text-align: left;
    font-weight: 700;
    margin-top: 0;
}

.bookings-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.bookings-filters select,
.bookings-filters input {
    padding: 10px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.bookings-filters select:focus,
.bookings-filters input:focus {
    outline: none;
    border-color: #667eea;
}

.bookings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.booking-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.booking-stat-card:nth-child(2) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.booking-stat-card:nth-child(3) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.booking-stat-card:nth-child(4) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.booking-stat-card i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.booking-stat-card .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.booking-stat-card .stat-label {
    font-size: 1rem;
    opacity: 1;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
}

.login-prompt {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.login-prompt-content i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.login-prompt-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.login-prompt-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.no-bookings {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-bookings i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.booking-card {
    background: white;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.booking-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.booking-card.active {
    border-left: 4px solid #43e97b;
}

.booking-card.completed {
    border-left: 4px solid #667eea;
}

.booking-card.cancelled {
    border-left: 4px solid #fa709a;
    opacity: 0.8;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e8ed;
    gap: 15px;
    flex-wrap: wrap;
}

.booking-id {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.booking-id span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-id i {
    color: #667eea;
}

.booking-card-body {
    margin-bottom: 20px;
}

.booking-info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
}

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.booking-info-item i {
    font-size: 1.2rem;
    color: #667eea;
    width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-info-item > div {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.booking-info-item .info-label {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 4px;
    white-space: nowrap;
}

.booking-info-item .info-value {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.booking-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #e1e8ed;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-danger {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.booking-info-summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.booking-info-summary p {
    margin: 8px 0;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.booking-info-summary strong {
    color: #667eea;
    flex-shrink: 0;
}

.booking-info-summary span {
    text-align: right;
    word-break: break-word;
}

/* Receipt Styles */
.receipt-content {
    max-width: 700px;
}

.receipt {
    font-family: Arial, sans-serif;
}

.receipt-header {
    text-align: center;
    border-bottom: 2px solid #667eea;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.receipt-header h2 {
    color: #667eea;
    margin-bottom: 10px;
}

.receipt-header p {
    margin: 5px 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.receipt-body {
    margin: 30px 0;
}

.receipt-section {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.receipt-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.receipt-section h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1rem;
}

.receipt-section p {
    margin: 8px 0;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.receipt-section p strong {
    flex-shrink: 0;
    min-width: 120px;
}

.receipt-section p span {
    text-align: right;
    word-break: break-word;
}

.receipt-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.modal-footer {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 20px 30px;
    border-top: 1px solid #e1e8ed;
}

/* Responsive Styles for Booking Management */
@media (max-width: 768px) {
    .bookings-filters {
        flex-direction: column;
    }
    
    .bookings-filters select,
    .bookings-filters input {
        width: 100%;
    }
    
    .bookings-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-info-row {
        grid-template-columns: 1fr;
    }
    
    .booking-card-actions {
        flex-direction: column;
    }
    
    .booking-card-actions .btn {
        width: 100%;
    }
    
    .booking-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .booking-id {
        width: 100%;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .summary-item span:last-child {
        text-align: left;
    }
    
    .receipt-section p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .receipt-section p span {
        text-align: left;
    }
    
    .booking-info-summary p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .booking-info-summary span {
        text-align: left;
    }
}
.admin-actions .btn.btn-secondary:hover {
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}