/* vanban.css - Unified Styles for Document Management Module */

.dashboard-btn {
    padding: 15px 10px; 
    border-radius: 10px; 
    transition: all 0.3s;
    border: 1px solid #eee;
    display: block;
    text-align: center;
}
.dashboard-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fcfcfc;
    text-decoration: none;
}

.bg-light { background-color: #f8f9fa; }

.timeline { margin-top: 10px; }
.task-item { border-left: 3px solid #3498db; padding-left: 15px; margin-bottom: 20px; }
.task-report { margin-top: 10px; padding: 10px; background: #f0fff0; border-left: 3px solid #5cb85c; border-radius: 4px; }

/* Dashboard adjustments */
.dashboard-panel { border-radius: 10px; border: none; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.dashboard-header h2 { font-weight: 700; color: #2c3e50; }
