body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    padding: 1.5rem;
}

h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.btn-primary {
    background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a3a4a 0%, #3d3560 100%);
}

.selected-files {
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
}

#status-section {
    transition: all 0.3s ease;
}

.progress {
    height: 10px;
    margin-top: 10px;
}

/* Estilos para a árvore de arquivos */
.file-tree {
    list-style-type: none;
    padding-left: 0;
}

.file-tree ul {
    list-style-type: none;
    padding-left: 20px;
}

.file-tree li {
    margin: 5px 0;
}

.folder {
    color: #ffc107;
    cursor: pointer;
    font-weight: 500;
}

.file {
    color: #6c757d;
}

.folder i, .file i {
    margin-right: 5px;
}

/* Animação para mostrar/esconder subpastas */
.folder:hover {
    color: #e0a800;
}

/* Estilo para o botão de adicionar mais arquivos */
#add-more-files {
    margin-right: 10px;
}

/* Estilos para gerenciamento de perfis */
#save-profile, #delete-profile {
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
}

#saved-profiles {
    margin-bottom: 0.5rem;
}

.profile-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
