*  {
    font-family: 'Roboto' ;
}

.navMenu{
    height: 5px;
    display: flex;
    align-items: center;
    background: linear-gradient(89.82deg, #267621 0.15%, #A01028 99.84%);

}

.text-primary{
    color: #007ebd !important;
    
}

.buttonSubmit{
    background-color: #007ebd !important;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;

    &:hover{
        background-color: #005b8b !important;
    }

}

#logo{
    width: 8rem;
}

/* Estilos para o dropdown de categorias */
#categoriasDropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background-color: #fff;
    display: none;
}

#categoriasDropdown.show {
    display: block;
}

#categoriasDropdown .dropdown-item {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    color: #212529;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
}

#categoriasDropdown .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #16181b;
}

#categoriasDropdown .dropdown-item:focus {
    background-color: #e9ecef;
    color: #16181b;
    outline: 0;
}

.position-relative {
    position: relative;
}

/* Estilos para a área de upload */
.drop-zone {
    border: 2px dashed #dee2e6;
    border-radius: 0.375rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    cursor: pointer;
}

.drop-zone:hover {
    border-color: #007ebd;
    background-color: #e3f2fd;
}

.drop-zone.dragover {
    border-color: #007ebd;
    background-color: #e3f2fd;
    transform: scale(1.02);
}

.drop-zone-content {
    pointer-events: none;
}

.drop-icon {
    width: 3rem;
    height: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.drop-text {
    margin-bottom: 0.5rem;
    color: #495057;
    font-size: 1rem;
}

/* Lista de arquivos */
.file-list {
    max-height: 300px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    background-color: #fff;
}

.file-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.file-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    color: #007ebd;
    flex-shrink: 0;
}

.file-details {
    flex-grow: 1;
}

.file-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    word-break: break-all;
}

.file-size {
    font-size: 0.875rem;
    color: #6c757d;
}

.file-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-remove svg {
    width: 1.25rem;
    height: 1.25rem;
}

.file-remove:hover {
    background-color: #f8f9fa;
}

.upload-info {
    font-size: 0.875rem;
}

.upload-info.error {
    color: #dc3545;
}

.upload-info.success {
    color: #198754;
}

/* Progress bar para upload */
.progress-container {
    margin-top: 0.5rem;
}

.file-progress {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.file-progress-bar {
    height: 100%;
    background-color: #007ebd;
    transition: width 0.3s ease;
}

@media only screen and (max-width: 1400px) {
    .container {
        max-width: 100% !important;
    }
}

@media only screen and (max-width: 1025px) {
    .card{
        width: 100% !important;
    }
}

