/* Global Styles & Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #ec4899;
    --background: #0f172a;
    --background-light: #1e293b;
    --background-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.logo:hover {
    transform: scale(1.05);
    transition: var(--transition);
}

/* Navigation */
.nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.35rem 0.65rem;
    border-radius: 0.4rem;
    font-size: 0.85rem;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 500px;
}

.search-bar {
    position: relative;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.search-bar::before {
    content: "🔍";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.75rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.hero h1 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.stat-card {
    background: var(--background-card);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Filters */
.filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.filter-btn,
.btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--background-card);
    color: var(--text-primary);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 0.85rem;
}

.filter-btn:hover,
.btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
    color: white;
}

.btn-success {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

/* Song Grid */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.song-card {
    background: var(--background-card);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.song-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.song-thumbnail {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
}

.song-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.song-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.song-info {
    padding: 0.5rem;
}

.song-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.song-artist {
    color: var(--text-secondary);
    font-size: 0.7rem;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.genre-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.1rem 0.4rem;
    border-radius: 0.75rem;
    font-size: 0.65rem;
    font-weight: 500;
}

/* Song Detail Page */
.song-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: var(--background-card);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.song-detail-thumbnail {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 0.75rem;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: var(--shadow);
}

.song-detail-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.song-detail-info h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.song-detail-artist {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.song-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.spec-item {
    background: var(--background-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.song-description {
    margin: 2rem 0;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Audio Player */
.audio-player {
    background: var(--background-light);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.audio-player audio {
    width: 100%;
    margin-bottom: 1rem;
}

.player-controls {
    display: flex;
    gap: 1rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.action-btn-play {
    background: var(--primary-color);
    color: white;
}

.action-btn-download {
    background: var(--success);
    color: white;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Table */
.table-container {
    background: var(--background-card);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: var(--background-light);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

tbody tr:hover {
    background: var(--background-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--background-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0.75rem;
    margin-top: 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

.alert-info {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    border: 1px solid var(--border-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--danger);
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Song List Styles */
.song-section {
    margin-bottom: 2.5rem;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--secondary-color);
}

.song-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.song-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
}

.song-list-item:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
}

.song-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 45px;
    text-align: center;
    flex-shrink: 0;
    margin-left: auto;
}

.song-list-thumbnail {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.song-list-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 1.5rem;
}

.play-overlay-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.play-btn-list {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    padding-left: 3px;
    transition: var(--transition);
}

.play-btn-list:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.song-list-info {
    flex: 1;
    min-width: 0;
}

.song-list-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.song-list-artist {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--background-card);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    grid-column: 1 / -1;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .song-detail {
        grid-template-columns: 1fr;
    }
    
    .song-detail-thumbnail {
        max-width: 200px;
        height: 200px;
    }
    
    .song-detail-info h1 {
        font-size: 1.2rem;
    }
    
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 0.35rem;
        width: 100%;
        font-size: 0.75rem;
    }
    
    .nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-bar input {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem 0.4rem 1.8rem;
    }
    
    .hero h1 {
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 0.75rem;
    }
    
    .hero {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    /* List view mobile styles - single column */
    .song-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .song-list-item {
        gap: 0.75rem;
        padding: 0.5rem;
    }
    
    .song-list-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .play-btn-list {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .song-list-title {
        font-size: 0.85rem;
    }
    
    .song-list-artist {
        font-size: 0.75rem;
    }
    
    .song-rank {
        font-size: 1.2rem;
        min-width: 35px;
    }
    
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 0.4rem;
    }
    
    .song-thumbnail {
        height: 110px;
        font-size: 1.8rem;
    }
    
    .song-title {
        font-size: 0.75rem;
    }
    
    .song-artist {
        font-size: 0.65rem;
    }
    
    .song-info {
        padding: 0.4rem;
    }
    
    .song-meta {
        font-size: 0.6rem;
        margin-top: 0.3rem;
        padding-top: 0.3rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.65rem;
    }
    
    .song-specs {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.4rem;
    }
    
    .spec-item {
        padding: 0.5rem;
    }
    
    .spec-label {
        font-size: 0.7rem;
    }
    
    .spec-value {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .container {
        padding: 0.5rem;
    }
    
    .stat-card {
        padding: 0.4rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .filters {
        gap: 0.4rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .songs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }
    
    .song-thumbnail {
        height: 100px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .hero h1 {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 0.7rem;
    }
    
    .logo {
        font-size: 0.95rem;
    }
    
    .song-detail-thumbnail {
        max-width: 180px;
        height: 180px;
        font-size: 3rem;
    }
    
    .song-specs {
        grid-template-columns: 1fr;
    }
    
    .song-title {
        font-size: 0.7rem;
    }
    
    .song-artist {
        font-size: 0.6rem;
    }
}

@media (min-width: 1025px) {
    .song-detail {
        grid-template-columns: 300px 1fr;
        gap: 1.5rem;
    }
    
    .song-detail-thumbnail {
        max-width: none;
        height: 300px;
    }
    
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.badge-new {
    background: var(--success);
    color: white;
}

/* Admin Specific Styles */
.admin-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav {
    display: flex;
    gap: 1rem;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.dashboard-card-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.dashboard-card-label {
    color: var(--text-secondary);
    font-size: 1rem;
}