/* General styles for SVG elements */
.cls-1 { font-size: 140px; }
.cls-1, .cls-2, .cls-3 { font-family: AbrilFatface-Regular, 'Abril Fatface'; }
.cls-4 { fill: #7b7c58; }
.cls-4, .cls-5, .cls-6 { stroke: #000; stroke-miterlimit: 10; stroke-width: 10px; }
.cls-2 { font-size: 101.49px; }
.cls-2, .cls-3 { fill: #fff; }
.cls-3 { font-size: 58.1px; }
.cls-5 { fill: #c4b1a2; }
.cls-6 { fill: none; }

/* Ensure no focus or click highlight appears */
svg, g.clickable, polygon, text, :focus {
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Fixed Navigation Button */
/* Fixed Navigation Button */
.nav-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 1rem;
    color: #fff;
    background-color: #7B7C58;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 30;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #7B7C58;
}

/* Hidden Navigation Menu */
.nav-menu {
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: rgba(123, 124, 88, 0.9);
    border-radius: 8px;
    padding: 20px;
    width: 312px;
    height: 500px;
    display: none;
    z-index: 25;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-menu ul li {
    margin: 10px 0;
}

.nav-menu ul li a {
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
}

/* Blur Overlay */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(15px); /* Stronger blur effect */
    z-index: 20;
    display: none; /* Hidden by default */
}



.form-title {
    font-size: 26px; /* Adjust font size */
    font-weight: 900; /* Bold text */
    color: #7b7c58; /* Text color */
    text-align: center; /* Center alignment */
    margin: 20px 0; /* Adjust spacing */
    font-family: 'YourPreferredFont', sans-serif; /* Set a custom font if desired */
    text-transform: uppercase; /* Optional: Transform text to uppercase */
}
.form-note {
    color: #7b7c58; /* Replace with your desired color */
    font-weight: normal; /* Optional: change font weight */
    text-decoration: none; /* Remove underline, if needed */
}

.form-note strong {
    color: #7b7c58; /* Color specifically for the <strong> text, e.g., FREE */
    font-weight: bold; /* Ensure "FREE" is bold */
}



/* Styling for the form to take full viewport height */
form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 80px; /* Adds padding to prevent overlap with footer */
    background-color: #ffffff;
    border-radius: 8px;
    min-height: 100vh; /* Full viewport height */
    box-sizing: border-box;
}

/* Styling for form elements */
form label {
    font-weight: bold;
}
/* Styling for form elements */
form {
    padding: 0 5px; /* Adds 5px space on left and right */
    box-sizing: border-box;
}

form input, form select, form button {
    display: block;
    width: 100%; /* Full width within the 5px padding of the form */
    margin-top: 10px;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1.5px solid #7B7C58;
    box-sizing: border-box; /* Ensure padding and border are included in width */
}
/* Styling for the disabled, selected option in select dropdowns */
select option:disabled {
    color: #7B7C58; /* Set the color for the disabled option */
}

/* Additional styling for the select element if needed */
select {
    color: #000; /* Default color for other options */
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
}



/* Submit button styles */
form button {
    background-color: #7B7C58;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #5a5b45;
}

/* Styling for error messages */
#error-message {
    color: red;
    font-size: 0.9rem;
    display: none;
}

/* Fixed Footer */
.footer-bottom {
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    text-align: center;
    left: 0;
    right: 0;
    height: 20px; /* Set desired height */
    padding: 10px 0; /* Vertical padding only */
    background-color: #7B7C58;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    font-size: 0.6rem;
    z-index: 20;
    line-height: 1.5;
}




/* Zone Availability Display */
.zone-availability {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 10px;
    padding: 10px;
    margin: 10px auto;
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 500px;
}

.zone-item {
    font-size: 1rem;
    color: #333;
    text-align: center;
    padding: 8px;
    background-color: #e1d3c6;
    border-radius: 4px;
}

/* Selected seat styling */
.clickable polygon {
    fill: none;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.clickable polygon:hover {
    fill: #e1d3c6; /* Hover color */
}

.clickable polygon.selected-seat {
    fill: #DFD1C3; /* Color when selected */
}
