:root {
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --accent: #0066ff;
    --accent-hover: #0052cc;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.5;
}

.submit-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--gray-100);
}

.submit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 800px;
    padding: 2.5rem;
}

.submit-header {
    text-align: center;
    margin-bottom: 2rem;
}

.submit-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.submit-header p {
    color: var(--gray-600);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    background: var(--white);
}

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

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

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success);
}

.form-input.with-icon {
    padding-left: 2.5rem;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    min-height: 44px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.15s;
}

.checkbox-label:hover {
    border-color: var(--accent);
}

.checkbox-label input:checked + span {
    color: var(--accent);
    font-weight: 500;
}

.file-upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--accent);
    background: var(--gray-50);
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.upload-placeholder {
    color: var(--gray-500);
}

.upload-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin: 0.25rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-light);
}

.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thank-you-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.thank-you-card h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ticket-info {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.info-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 500;
    transition: background 0.15s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--gray-600);
}

.login-form .form-group {
    margin-bottom: 1.25rem;
}

.btn-login {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-login:hover {
    background: var(--primary-light);
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-error {
    background: #fef2f2;
    color: var(--danger);
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: var(--success);
    border: 1px solid #bbf7d0;
}

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: var(--gray-900);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-700);
    text-align: center;
}

.sidebar-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 0.5rem;
}

.sidebar-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.sidebar-header p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.sidebar-nav {
    padding: 1rem 0;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.15s;
}

.nav-item:hover {
    background: var(--gray-800);
    color: var(--white);
}

.nav-item.active {
    background: var(--accent);
    color: var(--white);
}

.nav-item i {
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    border-top: 1px solid var(--gray-700);
    padding: 1rem 0;
}

.nav-item.logout:hover {
    background: var(--danger);
}

.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 1.5rem 2rem;
    background: var(--gray-100);
    min-height: 100vh;
}

/* App Top Bar */
.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-left h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-chip {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

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

.page-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.header-back {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.15s;
}

.btn-back:hover {
    background: var(--gray-200);
}

.user-info {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-new .stat-icon { background: #dbeafe; color: var(--info); }
.stat-new-update .stat-icon { background: #fef3c7; color: #f59e0b; }
.stat-halted .stat-icon { background: #fee2e2; color: #ef4444; }
.stat-pending .stat-icon { background: #fce7f3; color: #db2777; }
.stat-resolved .stat-icon { background: #d1fae5; color: var(--success); }

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.stat-info p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.card-header h2, .card-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.btn-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-link:hover {
    text-decoration: underline;
}

.card-body {
    padding: 1rem 1.5rem;
}

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

.table th, .table td {
    padding: 0.75rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
}

.table tbody tr:hover {
    background: var(--gray-50);
}

.ticket-id {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.875rem;
    color: var(--accent);
}

.priority-badge, .status-badge, .channel-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.priority-low { background: #d1fae5; color: #047857; }
.priority-medium { background: #dbeafe; color: #1d4ed8; }
.priority-high { background: #fef3c7; color: #b45309; }
.priority-urgent { background: #fee2e2; color: #b91c1c; }

.status-new { background: #dbeafe; color: #1d4ed8; }
.status-new_update { background: #fef3c7; color: #d97706; }
.status-pending { background: #fce7f3; color: #be185d; }
.status-halted { background: #e5e7eb; color: #4b5563; }
.status-resolved { background: #d1fae5; color: #047857; }

.channel-badge {
    background: var(--gray-100);
    color: var(--gray-600);
}

.channel-whatsapp { background: #dcfce7; color: #16a34a; }
.channel-email { background: #dbeafe; color: #2563eb; }
.channel-form { background: var(--gray-100); color: var(--gray-600); }

.empty-state {
    text-align: center;
    color: var(--gray-500);
    padding: 2rem;
}

.pipeline-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.875rem;
    white-space: nowrap;
    transition: all 0.15s;
}

.tab:hover {
    background: var(--gray-200);
}

.tab.active {
    background: var(--primary);
    color: var(--white);
}

.tab .count {
    background: rgba(0,0,0,0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.filters-bar {
    margin-bottom: 1rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.875rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    width: 250px;
}

.btn-search {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}

.tickets-table-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.tickets-table th, .tickets-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.tickets-table th {
    background: var(--gray-50);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
}

.ticket-row {
    cursor: pointer;
    transition: background 0.15s;
}

.ticket-row:hover {
    background: var(--gray-50);
}

.requester-info {
    display: flex;
    flex-direction: column;
}

.requester-info small {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.ticket-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .ticket-detail-grid {
        grid-template-columns: 1fr;
    }
}

.ticket-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticket-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.detail-row .label {
    width: 140px;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.detail-row .value {
    flex: 1;
    font-size: 0.875rem;
}

.detail-row .value a {
    color: var(--accent);
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--gray-100);
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.detail-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.detail-section h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.issue-text {
    color: var(--gray-700);
    line-height: 1.7;
}

.attachments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attachment-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
}

.attachment-item:hover {
    background: var(--gray-100);
}

.conversation-body {
    padding: 0;
}

.messages-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
}

.message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.message-customer {
    background: var(--gray-50);
    margin-right: 2rem;
}

.message-agent {
    background: #dbeafe;
    margin-left: 2rem;
}

.message-system {
    background: var(--gray-100);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.message-internal {
    background: #fef3c7;
    border: 1px dashed #f59e0b;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.message-header strong {
    color: var(--gray-900);
}

.message-time {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.message-channel {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.internal-tag {
    background: #fbbf24;
    color: #78350f;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 600;
}

.message-body {
    color: var(--gray-700);
}

.reply-form {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.reply-form h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reply-form .form-group {
    margin-bottom: 1rem;
}

.action-form {
    margin-bottom: 1.5rem;
}

.action-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.action-form .form-select {
    margin-bottom: 0.75rem;
}

.btn-secondary {
    width: 100%;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.875rem;
    color: var(--gray-900);
}

.text-muted {
    color: var(--gray-500);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
    }
}

/* Notification Bell */
.notification-bell-wrapper {
    position: relative;
    display: inline-flex;
}

.notification-bell-btn {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.notification-bell-btn:hover {
    background: var(--gray-200);
}

.notification-bell-btn i {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
    background: var(--danger);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    width: 320px;
    max-height: 400px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.notification-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-900);
}

.clear-all-btn {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.75rem;
    cursor: pointer;
}

.clear-all-btn:hover {
    text-decoration: underline;
}

.notification-dropdown-list {
    flex: 1;
    overflow-y: auto;
    max-height: 320px;
}

.notification-empty {
    padding: 1.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.notification-item {
    display: flex;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.15s;
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.notification-item-icon.new_ticket {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.notification-item-icon.new_message {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.notification-item-content {
    flex: 1;
    min-width: 0;
}

.notification-item-title {
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.notification-item-message {
    font-size: 0.7rem;
    color: var(--gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.125rem;
}

.notification-item-time {
    font-size: 0.65rem;
    color: var(--gray-400);
}

.notification-item.unread {
    background: rgba(0, 102, 255, 0.03);
    position: relative;
}

.notification-item.unread .notification-item-title {
    font-weight: 600;
}

.notification-item.read {
    opacity: 0.7;
}

.notification-unread-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

/* Navigation Badge */
.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    background: var(--danger);
    border-radius: 10px;
    margin-left: auto;
}

.nav-item {
    position: relative;
}
