body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}

.form-container {

    background-color: #002B50;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-wrapper {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

h2 {
    text-align: center;
    color: #002B50;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.input-field, .select-field {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    display: block;
}

.btn {
    padding: 8px 12px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #002B50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #004080;
}

.btn-secondary {
    color: #000;
    background-color: #FFC000;
}

.btn-secondary:hover {
    background-color: #f8d66f;
}

.btn-danger {
    background-color: #d9534f;
    color: #fff;
}

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

.btn-action {
    margin-right: 5px;
}

.error {
    color: red;
    font-size: 12px;
}


.list-container {
    /* background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    width: 90%;
    max-width: 800px; */
}

.list-title {
    text-align: center;
    color: #002B50;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th, .table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.table th {
    background-color: #002B50;
    color: #fff;
}

.table tr:nth-child(even) {
    background-color: #f2f2f2;
}

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

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-img-top {
    max-height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.navbar {
    width: 100%;
    position: relative; /* Garante que ela fique no fluxo normal da página */
    z-index: 10; /* Certifica-se de que a navbar fique acima de outros elementos */
}

.valueInput {
    width: 140px !important;
    text-align: right;
}

.selectInput {
    width: 200px !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFC000;
}

.dropdown-menu {
    background-color: #002B50;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: #fff;
    font-size: 14px;
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #004080;
    color: #FFC000;
}

.selected-period.bg-white {
    background: #ffe082 !important;
}

.field {
    width: max-content;
}

.field-equipment {
    max-width: 180px;
}

.payment-method-field {
    font-size: 12px;
}

.equipment-link:hover {
    background: #ffe082 !important;
    cursor: pointer;
    box-shadow: 0 0 0 2px #ffc107;
}

.badge.bg-orange {
    background-color: orange !important;
    color: #fff !important;
}