/* Estilos Gerais */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #000000, #333333);
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    text-align: center;
}

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

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff5722;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Estilos para o Formulário */
form {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #444;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    display: inline-block;
    text-align: left;
}

input[type="text"], input[type="number"], input[type="submit"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #666;
    background-color: #555;
    color: #eee;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #ff5722;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #e64a19;
}

/* Estilos para Botões de Ação */
.button-group {
    margin-top: 20px;
}

.action-button, .draw-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.action-button:hover, .draw-button:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

.action-button:active, .draw-button:active {
    transform: scale(1.02);
}

/* Estilos para a Lista de Filmes */
.movie-list {
    margin: 20px 0;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.movie-item {
    margin-bottom: 10px;
    padding: 15px;
    background-color: #444;
    border-radius: 8px;
    position: relative;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff5722;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.delete-button:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

.delete-button:active {
    transform: scale(1.02);
}

/* Estilos para Resultado do Sorteio */
.draw-result {
    margin: 20px auto;
    padding: 20px;
    background-color: #444;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}
