:root {
    --bg: #fcfcfc;
    --text: #111111;
    --muted: #666666;
    --border: #eaeaea;
    --accent-green: #52c41a;
    --accent-orange: #faad14;
    --accent-red: #ff4d4f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--bg); color: var(--text); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }

/* NAVBAR */
.navbar { background: white; border-bottom: 1px solid var(--border); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.brand { font-weight: 800; text-decoration: none; color: black; font-size: 1.2rem; }
.brand span { color: #999; font-weight: 400; }
.main-nav { display: flex; gap: 20px; margin-right: 20px; }
.nav-link { background: none; border: none; font-family: inherit; font-weight: 600; cursor: pointer; color: var(--muted); font-size: 0.9rem; }
.nav-link:hover { color: black; }

/* PROFILE DROPDOWN */
.profile-trigger { position: relative; cursor: pointer; }
#user-photo { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd; object-fit: cover; }
.dropdown { position: absolute; right: 0; top: 55px; background: white; border: 1px solid var(--border); padding: 15px; width: 220px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: left; display: none; z-index: 2000; }
.dropdown.active { display: block !important; }
.dropdown a { display: block; padding: 8px 0; text-decoration: none; color: var(--text); font-size: 0.9rem; border-bottom: 1px solid #f9f9f9; }
.btn-logout { background: none; border: none; color: #ff4d4d; font-weight: 700; cursor: pointer; padding: 10px 0; width: 100%; text-align: left; }

/* TABLE ALA SOUNDON */
.table-container { background: white; border-radius: 4px; overflow-x: auto; border: 1px solid var(--border); }
.release-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13px; }
.release-table th { padding: 12px 15px; border-bottom: 1px solid #f0f0f0; color: #888; font-weight: 600; font-size: 11px; }
.release-table td { padding: 15px; border-bottom: 1px solid #f9f9f9; vertical-align: middle; }

/* STATUS DOTS */
.status-dot { height: 6px; width: 6px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.dot-review { background-color: var(--accent-orange); }
.dot-live { background-color: var(--accent-green); }
.dot-decline { background-color: var(--accent-red); }
.dot-takedown { background-color: #000; }
.status-text { font-weight: 500; font-size: 12px; }

/* FORMS & UI */
.hero { padding: 100px 0; text-align: center; }
h1 { font-size: 3rem; letter-spacing: -2px; line-height: 1.1; margin-bottom: 20px; }
.dashboard { padding: 60px 0; }
.upload-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 35px; text-align: left; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
input, select { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #eee; border-radius: 8px; font-family: inherit; }
.instruction-box { background: #f0f7ff; padding: 15px; border-radius: 8px; font-size: 11px; color: #0056b3; line-height: 1.5; margin-top: 10px; }

.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.store-item { background: #f9f9f9; padding: 10px; border-radius: 6px; font-size: 12px; display: flex; align-items: center; gap: 10px; cursor: pointer; }
.btn-primary { background: black; color: white; padding: 12px 25px; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; text-align: center; }
.btn-primary.large { padding: 18px 45px; font-size: 1.1rem; }
.btn-distribute { background: black; color: white; width: 100%; padding: 16px; border: none; border-radius: 10px; font-weight: 800; cursor: pointer; }

/* ACTION ICONS */
.btn-delete-icon { background: none; border: none; cursor: pointer; font-size: 16px; color: #ccc; transition: color 0.2s; }
.btn-delete-icon:hover { color: var(--accent-red); }

.admin-controls { display: flex; gap: 5px; margin-top: 10px; }
.btn-admin { padding: 5px 10px; border: 1px solid #eee; border-radius: 6px; font-size: 10px; cursor: pointer; background: white; font-weight: 700; }

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .release-table th:nth-child(2), .release-table td:nth-child(2) { display: none; }
}
