body {
    background-color: #121212;
    color: #fff;
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.navbar-default {
    background-color: #000 !important;
    border: none !important;
    border-bottom: 1px solid #282828;
}

.navbar-default .navbar-brand,
.navbar-default .navbar-nav > li > a {
    color: #fff !important;
    font-weight: 600;
    background: none !important;
    box-shadow: none !important;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-nav > li > a:hover {
    color: #1ed760 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover {
    background-color: transparent !important;
    color: #1ed760 !important;
    box-shadow: none !important;
}

footer {
    position: fixed;
    bottom: 0;
    left: 37%;
}

/* Main container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.page-subtitle {
    color: #a7a7a7;
    font-size: 1rem;
    font-weight: 400;
}

/* Search bar */
.search-container {
    text-align: center;
    margin-bottom: 32px;
}

input.search {
    background-color: #242424;
    border: none;
    border-radius: 500px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 48px 12px 16px;
    width: 364px;
    max-width: 100%;
    outline: none;
    transition: all 0.2s ease;
}

input.search:focus {
    background-color: #2a2a2a;
    border: 1px solid #535353;
}

input.search::placeholder {
    color: #a7a7a7;
}

/* Album table */
.album-table {
    background-color: transparent;
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.album-table th {
    color: #a7a7a7;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    text-align: left;
    border-bottom: 1px solid #282828;
    background: transparent !important;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.album-table th:hover {
    color: #fff;
}

.album-table th.sort:after {
    content: '';
    margin-left: 8px;
    opacity: 0.5;
}

.album-table th.sort.asc:after {
    content: '↑';
}

.album-table th.sort.desc:after {
    content: '↓';
}

.album-table td {
    padding: 8px 16px;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    vertical-align: middle;
}

.album-table tbody tr {
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.album-table tbody tr:hover {
    background-color: #1a1a1a !important;
}

.album-table img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 16px;
    object-fit: cover;
}

.album-name {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.artists {
    color: #a7a7a7 !important;
    font-size: 14px;
    font-weight: 400;
}

.rating {
    font-size: 14px;
    font-weight: 400;
}

.rating-high {
    color: #1ed760 !important;
}

.rating-medium {
    color: #ffa500 !important;
}

.rating-low {
    color: #ff6b6b !important;
}

.rating-na {
    color: #535353 !important;
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-badge {
    text-align: center;
    padding: 16px;
    background-color: #181818;
    border-radius: 8px;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1ed760;
    line-height: 1.2;
}

.stat-label {
    color: #a7a7a7;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero section for index page */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a7a7a7;
    margin-bottom: 48px;
    max-width: 600px;
    font-weight: 400;
}

.login-button {
    background-color: #1ed760;
    color: #000;
    padding: 16px 32px;
    border-radius: 500px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-button:hover {
    background-color: #1fdf64;
    transform: scale(1.04);
    color: #000;
    text-decoration: none;
}

.features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #181818;
    padding: 32px 24px;
    border-radius: 8px;
    width: 280px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: #a7a7a7;
    font-size: 14px;
    line-height: 1.6;
}

/* Content wrapper and filters */
.content-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.filters-sidebar {
    width: 280px;
    background-color: #181818;
    border-radius: 8px;
    padding: 24px;
    position: sticky;
    top: 20px;
    flex-shrink: 0;
}

.filters-sidebar h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-label {
    display: block;
    color: #a7a7a7;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.filter-select,
.filter-input {
    width: 100%;
    background-color: #242424;
    border: 1px solid #535353;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    margin-bottom: 8px;
    outline: none;
    transition: border-color 0.2s ease;
}

.filter-select:focus,
.filter-input:focus {
    border-color: #1ed760;
}

.filter-input:disabled {
    background-color: #181818;
    border-color: #282828;
    color: #535353;
    cursor: not-allowed;
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #535353;
    transition: 0.2s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.2s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #1ed760;
}

input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.clear-filters-btn {
    width: 100%;
    background-color: transparent;
    border: 1px solid #535353;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-filters-btn:hover {
    border-color: #1ed760;
    color: #1ed760;
}

.main-content {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
}

.album-table {
    width: 100%;
    table-layout: fixed;
}

.album-table th:first-child,
.album-table td:first-child {
    width: 60px;
}

.album-table th:nth-child(2),
.album-table td:nth-child(2) {
    width: 40%;
}

.album-table th:nth-child(3),
.album-table td:nth-child(3) {
    width: 40%;
}

.album-table th:nth-child(4),
.album-table td:nth-child(4) {
    width: 80px;
    text-align: right;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .filters-sidebar {
        width: 100%;
        position: static;
    }
    .main-container {
        padding: 20px 16px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    input.search {
        width: 100%;
        max-width: 300px;
    }
    
    .album-table th,
    .album-table td {
        padding: 8px 12px;
    }
    
    .album-table img {
        width: 32px;
        height: 32px;
        margin-right: 12px;
    }
    
    .stats-container {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
}/* T
est Account Button */
.test-account-button {
    background: transparent;
    border: 2px solid #1ed760;
    color: #1ed760;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.test-account-button:hover {
    background-color: #1ed760;
    color: #000;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #282828;
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #404040;
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.close {
    color: #b3b3b3;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #fff;
}

.modal-body {
    padding: 24px;
}

.credential-row {
    margin-bottom: 20px;
}

.credential-row label {
    display: block;
    color: #b3b3b3;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.credential-value {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #404040;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #535353;
}

.credential-value span {
    flex: 1;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.copy-btn, .reveal-btn {
    background: transparent;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.copy-btn:hover, .reveal-btn:hover {
    color: #1ed760;
    background-color: rgba(30, 215, 96, 0.1);
}

.modal-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: rgba(30, 215, 96, 0.1);
    border: 1px solid rgba(30, 215, 96, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.modal-note i {
    color: #1ed760;
    margin-top: 2px;
}

.modal-note span {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.4;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1ed760;
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 1001;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .credential-value {
        padding: 10px 12px;
    }
}