 
/* General Styles */
:root {
    --primary-color: #e50914;
    --secondary-color: #221f1f;
    --background-color: #f0f0f0;
    --text-color: #333;
    --card-color: #fff;
    --card-hover-color: #ddd;
    --accent-color: #e6b91e;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--card-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 20px;
}

/* Movie Management */
.movie-management {
    margin-bottom: 20px;
}

.movie-management h2 {
    text-align: center;
}

/* Tabs */
.movie-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

/* Tab Buttons */
.tab-button {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #0056b3;
}

/* Movie Details */
.movie-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 10px;
    align-items: center;
}

.movie-details label {
    grid-column: 1 / span 1;
    font-weight: bold;
}

.movie-details input[type="text"],
.movie-details input[type="url"],
.movie-details textarea {
    grid-column: 2 / span 1;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

/* Buttons */
.movie-details button {
    grid-column: 1 / span 2;
    padding: 10px;
    margin-top: 10px;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.movie-details button:hover {
    background-color: #218838;
}

/* Showtimes */
.showtimes {
    grid-column: 1 / span 2;
    margin-top: 20px;
}

.showtimes h3 {
    margin-bottom: 10px;
}

/* Showtime Input */
.showtime-input {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.showtime-input select,
.showtime-input input {
    width: 45%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}