/* Velendor — Portal styles */

.btn {
    text-transform: uppercase;
}

.page-header {
    margin-bottom: 1.5rem;
}

.page-title {
    margin-bottom: 0;
}

/* Dashboard stat cards */
.stat-card .card-body {
    padding: 1.25rem;
}

.stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 0.8125rem;
    color: var(--tblr-secondary);
    margin-top: 0.25rem;
}

/* Invoice status filter tabs */
.invoice-filters .nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.invoice-filters .nav-link.active {
    font-weight: 600;
}

/* Project cards grid */
.project-card {
    transition: box-shadow 0.15s ease;
}

.project-card:hover {
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}

.project-card .card-body {
    padding: 1.25rem;
}

.project-card .progress {
    height: 6px;
}

/* Kanban board */
#kanban-board .col {
    min-width: 280px;
}

.kanban-column {
    min-height: 200px;
    transition: background-color 0.15s ease;
}

.kanban-column.sortable-ghost-class {
    background: var(--tblr-primary-lt);
}

.kanban-card {
    cursor: grab;
    transition: box-shadow 0.15s ease, transform 0.1s ease;
}

.kanban-card:active {
    cursor: grabbing;
}

.kanban-card.sortable-chosen {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.kanban-card.sortable-ghost {
    opacity: 0.4;
}

/* Task detail — comments */
#comments-section .avatar {
    flex-shrink: 0;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state .empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--tblr-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Invoice line items table */
.invoice-lines th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tblr-secondary);
}

/* Profile avatar */
.avatar-xl {
    font-size: 1.5rem;
}

/* Loading states */
.loading-indicator {
    display: none;
    text-align: center;
    padding: 2rem;
}

.loading-indicator.active {
    display: block;
}

/* Responsive kanban */
@media (max-width: 768px) {
    #kanban-board {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    #kanban-board .col {
        min-width: 260px;
        flex: 0 0 260px;
    }
}
