.btn-primary {
    background-color: #007bff;
    color: #fff;
    box-shadow: 0 0 0 0;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
    box-shadow: 0 0 0 0;
}

input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    color: #495057;
}

input[type="date"]:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control {
    appearance: none; /* Remove o estilo padrão do navegador */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
}

select.form-control:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}

input {
    padding: 5px;
}

.form-control {
    border: 1px solid #ced4da !important;
    box-shadow: none !important;
    padding: 10px;
}

.form-select {
    border: 1px solid #ced4da !important;
    box-shadow: none !important;
    padding: 10px;
}

.input-group > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}