/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

/* Estilos para a landpage */
.input-group {
    max-width: 600px;
    margin: 0 auto 30px;
}



.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Estilos para a tabela de resultados */
.table {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: #3498db;
    color: #fff;
    font-weight: bold;
}

.table td, .table th {
    padding: 12px;
    text-align: center;
}

.table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Estilos para o modal */
.modal-content {
    border-radius: 8px;
}

.modal-header {
    background-color: #3498db;
    color: #fff;
    border-bottom: none;
}

.modal-title {
    font-weight: bold;
}

.modal-body p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.modal-body strong {
    color: #2c3e50;
}

/* Estilos para a página de administração */
#btnCadastrar {
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .btn {
        margin-top: 10px;
        width: 100%;
    }
     .input-group input{
        width: 100% !important;
    }
}

/* Estilos para o input group em telas pequenas */
@media (max-width: 576px) {
   
}