﻿.user-actions a {
    color: #000000;
    text-decoration: none;
    margin-left: 15px;
}

.movie-info {
    display: flex;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.movie-poster {
    width: 200px;
    height: 300px;
    object-fit: cover;
}

.movie-details {
    padding: 20px;
    flex-grow: 1;
}

.movie-title {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.booking-process {
    display: flex;
    gap: 20px;
}

.step {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 2;
}

.cart {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.step-title {
    font-size: 18px;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.zone-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.zone-btn {
    padding: 8px 15px;
    background-color: #e1e1e1;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .zone-btn.active {
        background-color: #1a1a2e;
        color: white;
    }

.seat-map {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.seat {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e1e1e1;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
}

    .seat.selected {
        background-color: #4CAF50;
        color: white;
    }

    .seat.occupied {
        background-color: #f44336;
        color: white;
        cursor: not-allowed;
    }

    .seat.vip {
        background-color: #FFD700;
    }

    .seat.in-cart {
        background-color: #2196F3;
        color: white;
        cursor: not-allowed;
    }

.screen {
    text-align: center;
    background-color: #1a1a2e;
    color: white;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cart-total {
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background-color: #1a1a2e;
    color: white;
    width: 100%;
    margin-top: 20px;
}

.btn-danger {
    background-color: #f44336;
    color: white;
}

.btn-small {
    padding: 3px 6px;
    font-size: 12px;
}

.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
}

.modal-title {
    margin-top: 0;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
    }

    .form-group input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

.tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

    .tab.active {
        border-bottom: 2px solid #1a1a2e;
        font-weight: bold;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.legend {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

.error-message {
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.success-message {
    color: #4CAF50;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}
