/* cinema.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1c1c1c;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    background-color: #2c2c2c;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a {
    color: #f5f5f5;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #f1c40f;
}

#indicator {
    position: absolute;
    bottom: 0;
    height: 4px;
    background-color: #f1c40f;
    width: 0;
    transition: width 0.3s ease, left 0.3s ease;
}

h2 {
    color: #f1c40f;
    text-align: center;
    margin-top: 20px;
}

form {
    background-color: #2c2c2c;
    border: 1px solid #f1c40f;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"], input[type="password"], input[type="email"], select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button, input[type="submit"] {
    background-color: #f1c40f;
    color: #1c1c1c;
    border: none;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

button:hover, input[type="submit"]:hover {
    background-color: #d4ac0d;
}

#tableau {
    border-collapse: collapse;
    width: 80%;
    margin: 20px auto;
    background-color: #333;
    color: #f5f5f5;
}

#tableau th, #tableau td {
    border: 1px solid #f1c40f;
    padding: 8px;
    text-align: left;
}

#tableau th {
    background-color: #444;
}

#form2, #form_reservations {
    width: 80%;
    margin: 20px auto;
}

#form2 p, #form_reservations input[type='submit'] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
        .button-link {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            color: #fff;
            background-color: #007BFF;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
        }

        .button-link:hover {
            background-color: #0056b3;
        }
