/* Estilos Gerais */
.form_padrao_agendamento,
.form_padrao {
    display: flex;
    background-color: white !important;
    padding: 20px !important;
    border-radius: 8px !important;
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    right: 0 !important;
}

/* Seção de Informações do Solicitante */
.informacoes_solicitantes,
.informacoes_transporte,
.informacoes_liberacao {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.informacoes_solicitantes h3,
.informacoes_transporte h3,
.informacoes_liberacao h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.informacoes_solicitantes label,
.informacoes_transporte label {
    font-weight: 600;
    color: #495057;
    display: block;
    margin-bottom: 5px;
}

.informacoes_solicitantes input,
.informacoes_transporte input,
.informacoes_transporte select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.informacoes_solicitantes input:focus,
.informacoes_transporte input:focus,
.informacoes_transporte select:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Seção de Liberação */
.informacoes_liberacao {
    background-color: #ffffff;
    border-left: 5px solid #007bff;
}

.informacoes_liberacao h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 10px;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.informacoes_liberacao table {
    width: 100%;
    border-collapse: collapse;
}

.informacoes_liberacao thead {
    background-color: #007bff;
    color: white;
    text-transform: uppercase;
}

.informacoes_liberacao th,
.informacoes_liberacao td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.informacoes_liberacao tbody tr:hover {
    background-color: #f8f9fa;
    transition: all 0.2s ease-in-out;
}

/* Botões */
.custom-btn,
.btn-danger {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.custom-btn:hover {
    background-color: #0056b3;
    color: white;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-danger:hover {
    background-color: #c82333;
}

.dados_agendamentos {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    position: relative;
    left: 16px;
    top: -20px;
}

form {
    padding-bottom: 20px;
}

.dados_agendamentos h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #343a40;

    padding-bottom: 8px;
    margin-bottom: 15px;
}

.dados_agendamentos .form-label {
    font-weight: 600;
    color: #495057;
}

.dados_agendamentos .form-control,
.dados_agendamentos .form-select {
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.dados_agendamentos .form-control:focus,
.dados_agendamentos .form-select:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.dados_agendamentos .btn-success {
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.dados_agendamentos .btn-success:hover {
    background-color: #28a745;
    transform: scale(1.03);
}



/* Responsividade */
@media (min-width: 768px) {
    .informacoes_solicitantes .col-md-12 {
        display: flex;
        flex-direction: column;
    }
}