:root {
    --bg-soft: #f6f8fb;
    --card-radius: 14px;
}

body {
    background: linear-gradient(180deg, #f4f7fc 0%, #eef2f8 100%);
    min-height: 100vh;
}

.card {
    border: 0;
    border-radius: var(--card-radius);
    box-shadow: 0 8px 24px rgba(29, 45, 76, 0.08);
}

.table thead th {
    white-space: nowrap;
}

.metric-card {
    background: #fff;
    border-left: 5px solid #0d6efd;
}

.login-wrap {
    min-height: calc(100vh - 60px);
}

.invoice-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 24px;
    border-radius: var(--card-radius);
    box-shadow: 0 8px 24px rgba(29, 45, 76, 0.08);
}

@media (max-width: 768px) {
    .invoice-box {
        padding: 14px;
    }

    .table-responsive {
        font-size: 0.9rem;
    }
}

/* Description Cell Styles */
.description-cell {
    max-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.description-text {
    font-size: 0.72rem;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.description-cell.expanded .description-text {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.description-cell:hover .description-text {
    color: #212529;
}
