/* Estilos gerais */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* Estilos para o Kanban */
.kanban-column {
    min-width: 300px;
}

.kanban-tasks {
    min-height: 300px;
    padding: 1rem;
}

.task-card {
    cursor: grab;
    transition: all 0.2s ease;
}

.task-card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.task-card.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

.kanban-tasks.drag-over {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Estilos para prioridades */
.priority-low {
    border-left: 4px solid #2ecc71;
}

.priority-medium {
    border-left: 4px solid #f39c12;
}

.priority-high {
    border-left: 4px solid #e74c3c;
}

/* Estilos para o dashboard */
.project-card {
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

/* Estilos para formulários */
.form-control:focus, .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

/* Estilos para botões */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Estilos para navbar */
.navbar-dark.bg-primary {
    background-color: #3498db !important;
}

/* Estilos para tabelas */
.table th {
    background-color: #f8f9fa;
}

/* Estilos para comentários */
.comment-item {
    border-left: 3px solid #3498db;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: bold;
}

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

/* Estilos para anexos */
.attachment-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.attachment-icon {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.attachment-info {
    flex-grow: 1;
}

.attachment-name {
    margin-bottom: 0;
}

.attachment-size {
    color: #6c757d;
    font-size: 0.75rem;
}

.attachment-actions {
    margin-left: 0.5rem;
}

/* Estilos para comentários */
.comment-item {
    transition: background-color 0.2s ease;
}

.comment-item:hover {
    background-color: #f8f9fa;
}

.comment-text {
    white-space: pre-line;
}

/* Estilos para anexos */
.list-group-item {
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}