body {
    /* Adiciona o padding para evitar que a barra lateral sobreponha o conteúdo */
    padding-left: 200px;
    background-color: #0d0c0b;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Estilos para a barra lateral */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;
    width: 200px;
}

/* Estilos para as opções da barra lateral */
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1f1f1;
}

.main {
    transition: margin-left .5s;
    padding: 20px;
}

.sidebar-logo {
    display: block;
    width: calc(100% - 30px);
    padding: 15px;
    height: auto;
}

h1 {
    font-weight: 900;
}


input[type=text],
input[type=date],
input[type=number] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
    border: none;
}

button {
    background-color: #fd3d00;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
}

.tabs {
    overflow: hidden;
    background: #333;
}

.tab {
    background-color: #333;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color: #fff;
}

.tab:hover {
    background-color: #d93300;
}

.content {
    padding: 6px 12px;
    border-top: none;
}

.notification {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    border-radius: 10px;
    padding: 20px;
    color: white;
    max-width: 300px;
    opacity: 0.9;
}

.notification .close-button {
    float: right;
    color: white;
    cursor: pointer;
}

.notification-success {
    background-color: #32a852; /* verde moderno */
}

.notification-error {
    background-color: #d63232; /* vermelho moderno */
}

.tab-active {
    background-color: #fd3d00;
    color: white;
}

.geolocation {
    display: flex;
    justify-content: flex-start; /* Alinha os itens no início do container flex */
    gap: 20px; /* Adiciona um espaço entre os itens flex */
}

#geoLocations, #selectedStates {
    border: 1px solid #fff; /* Para visualizar as caixas */
    padding: 10px;
    background-color: #333; /* Cor do fundo dos inputs */
    color: #fff; /* Cor do texto */
}

.state {
    cursor: pointer;
    margin-bottom: 5px;
    color: #fff; /* Cor do texto */
}

.state.selected {
    background-color: #fd3d00; /* Cor de fundo quando selecionado */
    color: white; /* Cor do texto quando selecionado */
}


.upload-area {
    border: 2px dashed #fd3d00;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fd3d00;
    transition: 0.3s;
}

.upload-area:hover {
    background: rgba(253, 61, 0, 0.1);
}

.upload-area.active {
    background: rgba(253, 61, 0, 0.1);
    border-color: #fd3d00;
}

#uploadingIndicator {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 18px;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

