/* Override styles for nav-links */
.nav-links a, .nav-links button {
    font-weight: 400 !important;
    font-family: var(--font-body) !important;
}

body {
    font-family: var(--font-body);
}

/* New compact layout styles */
.profile-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 1);
}

.profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section-header {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 0.5rem;
    color: #4f46e5;
}

.folder-container {
    transition: all 0.2s ease;
}

.folder-header:hover {
    background-color: #f3f4f6;
}

.stat-card {
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.file-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.file-table th {
    background-color: #f9fafb;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.file-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.file-table tr:last-child td {
    border-bottom: none;
}

.file-table tr:hover {
    background-color: #f9fafb;
}

.action-btn {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}