.navbar-color {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.card-color {
    background-color: rgba(133, 184, 203, 0) !important;

}

.card {
    border: 1px solid rgba(0, 0, 0, 0.3) !important;

}

body {
    background-color: rgba(133, 184, 203, 0.05) !important;
    box-sizing: border-box;
}

.pointer {
    cursor: pointer !important;
}

.card-hover {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.card-form {
    background-color: rgb(172, 192, 221) !important;
}

.date-picker {
    width: 300px;
}

.car-image.img-pequena {
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

.custom-datepicker-container {
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

.custom-datepicker-container .react-datepicker__header {
    background-color: #0d6efd;
    /* Azul primário do Bootstrap */
    border-bottom: none;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    padding-top: 15px;
}

.custom-datepicker-container .react-datepicker__current-month {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    padding-bottom: 10px;
}

.custom-datepicker-container .react-datepicker__navigation-icon::before {
    border-color: #ffffff;
    border-width: 2px 2px 0 0;
}

.custom-datepicker-container .react-datepicker__day-name {
    color: #ffffff;
    font-weight: bold;
    opacity: 0.8;
}

.custom-datepicker-container .react-datepicker__day {
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
}

.custom-datepicker-container .react-datepicker__day:hover {
    background-color: #e9ecef;
    transform: scale(1.05);
}

.custom-datepicker-container .react-datepicker__day--selected {
    background-color: #0d6efd;
    color: #ffffff;
    font-weight: bold;
}

.custom-datepicker-container .react-datepicker__day--today {
    font-weight: bold;
    border: 1px solid #0d6efd;
}

.custom-datepicker-container .react-datepicker__day--outside-month {
    opacity: 0.4;
}


.react-datepicker-wrapper {
    width: 100%;
}

.react-datepicker__input-container {
    width: 100%;
}

.react-datepicker__input-container input {
    width: 100%;
}

.navbar-logo {
    height: 3.8rem;
    width: auto;
}


.form-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    background-color: rgba(133, 184, 203, 0) !important;
    transition: all 0.2s ease-in-out;
}


.form-card .card-header {
    background-color: rgba(133, 184, 203, 0) !important;
    border-bottom: none;
    font-weight: 600;
    padding: 1rem 1.25rem;
}


.login-page-wrapper {

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card-animated {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chart-container {
    position: relative;
    height: 400px;
    max-width: 700px;
    margin: auto;
}

.descricao-gasto {
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 120px;
    overflow-y: auto;
}

.chip-tipo {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.75em;
    font-size: 0.95em;
    font-weight: 500;
    color: #1976d2;
    gap: 0.5em;
    border: none;
}

.chip-tipo .bi {
    font-size: 1em;
}