/* Dashboard Styles */
:root {
  --primary-color: #3b82f6;
  --text-color: #333;
  --text-secondary: #666;
  --card-bg: #fff;
  --border-color: #eaeaea;
  --table-hover: #f3f4f6;
  --sidebar-width: 250px;
  --button-bg-color: #3b82f6;
  --button-text-color: #fff;
  --button-bg-hover-color: #2563eb;
  --button-secondary-bg-color: #374151;
  --button-secondary-text-color: #f9fafb;
}

/* Main Container */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.dashboard-header {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    border-radius: 8px;
}

.dashboard-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color, #333);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sidebar - Mobile First */
.dashboard-sidebar {
    width: 100%;
    background-color: transparent;
    padding: 0;
    order: 1;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Initially hide mobile/desktop specific elements */
.mobile-only {
    display: none;
}

.dashboard-header .dashboard-sidebar {
    display: none;
}

/* Desktop styles */
@media (min-width: 801px) {
    .dashboard-content {
        flex-direction: row;
        gap: 2rem;
    }
    
    .dashboard-sidebar {
        flex: 0 0 var(--sidebar-width);
        order: 1;
        position: sticky;
        top: 1rem;
        align-self: flex-start;
        background-color: var(--card-bg, #fff);
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 0;
        margin-bottom: 0;
    }
    
    .dashboard-main {
        order: 2;
        flex: 1;
        max-width: calc(100vw - 300px); /* 300px accounts for sidebar width */
        overflow-x: hidden;
    }
}

/* Navigation Tabs - Mobile First */
.dashboard-nav {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 1.25rem 0 0.25rem 0;
}

.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    background: #f8fafc;
    border-radius: 8px;
}

.dashboard-nav ul::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.dashboard-nav li {
    flex: 1;
    min-width: 75px;
    text-align: center;
    margin: 0;
    border-right: 1px solid var(--border-color);
}

.dashboard-nav li:last-child {
    border-right: none;
}

.dashboard-nav a {
    display: block;
    padding: 1rem 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dashboard-nav a:hover {
    background-color: rgba(59, 130, 246, 0.05);
    color: var(--primary-color);
}

.dashboard-nav li.active a {
    color: var(--primary-color);
    background-color: white;
    box-shadow: 0 -2px 0 var(--primary-color) inset;
}

/* User stats - shown by default for mobile */
.user-stats {
    display: block;
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color, #eaeaea);
}

/* Desktop styles */
@media (min-width: 800px) {
    .dashboard-nav {
        background: transparent;
        box-shadow: none;
        margin: 1rem 0 0.5rem 0;
    }
    
    .dashboard-nav ul {
        flex-direction: column;
        overflow-x: visible;
        background: transparent;
        gap: 0.25rem;
    }
    
    .dashboard-nav li {
        text-align: left;
        border-right: none;
        min-width: auto;
    }
    
    .dashboard-nav a {
        padding: 0.75rem 1rem;
        border-radius: 4px;
    }
    
    .dashboard-nav li.active a {
        background-color: var(--primary-color);
        color: white;
        box-shadow: none;
    }
    
    /* Show user stats on desktop */
    .user-stats {
        display: block;
        background: #f8fafc;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 1.5rem 0 1.5rem 0;
    }
}

/* Mobile styles */
@media (max-width: 800px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .dashboard-header {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        position: relative;
    }
    
    .dashboard-header .dashboard-sidebar {
        display: block !important;
        margin: 0;
        padding: 1rem;
        background: #f8fafc;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    /* Ensure the main sidebar is hidden on mobile */
    .dashboard-sidebar.desktop-only {
        display: none !important;
    }
    
    /* Move navigation tabs to top of dashboard content */
    .dashboard-main {
        order: 2;
    }
    
    .dashboard-nav {
        order: 1;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .dashboard-nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: var(--card-bg);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}

/* Desktop styles */
@media (min-width: 801px) {
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

.stat-item {
    margin: 0;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary, #666);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: 600;
    color: var(--text-color, #333);
}

.progress-bar {
    height: 8px;
    background-color: var(--border-color, #eaeaea);
    border-radius: 4px;
    margin: 0.5rem 0 1rem 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #3b82f6;
    border-radius: 4px;
}

.download-link {
    color: #2563eb;
    text-decoration: none;
}

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

/* Main Content */
.dashboard-main {
    flex: 1;
}

.dashboard-section {
    width: 100%;
    display: none;
    background-color: var(--card-bg, #fff);
    border-radius: 8px;
    border-color: #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-section.active {
    display: block;
}

.dashboard-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color, #333);
}

/* Overview Cards */
.overview-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card {
    background-color: var(--card-bg, #fff);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color, #333);
}

.activity-list {
    height: 100%;
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color, #eaeaea);
}

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

.activity-description {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-secondary, #666);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.stat-box {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
    padding: 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.action-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.action-btn.primary {
    background-color: #3b82f6;
    color: white;
}

.action-btn.primary:hover {
    background-color: #2563eb;
}

.action-btn:not(.primary) {
    background-color: var(--button-secondary-bg, #f3f4f6);
    color: var(--text-color, #333);
}

.action-btn:not(.primary):hover {
    background-color: var(--button-secondary-hover, #e5e7eb);
}

.action-icon {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-secondary, #666);
}

.action-icon:hover {
    color: var(--text-primary, #333);
}

.action-icon .fa-trash-alt {
    font-size: 24px;
    display: block;
    margin: 0 auto;
}

/* Conversions Table */
.filter-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

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

#conversionSearch {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    margin-right: 10px;
    transition: border-color 0.3s;
}

#conversionSearch:focus {
    border-color: #2563eb;
    outline: none;
}

#searchBtn {
    padding: 10px 20px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

#searchBtn:hover {
    background-color: #1d4ed8;
}

#searchBtn:active {
    background-color: #1e40af;
}

.filter-dropdown select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 4px;
    background-color: var(--card-bg, #fff);
}

#conversionFilter {
    padding: 10px 15px;
    padding-right: 30px; /* Space for custom arrow */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

#conversionFilter:hover {
    border-color: #2563eb;
}

#conversionFilter:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.conversions-table-wrapper {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.conversions-table {
    width: auto;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    border: 1px solid var(--border-color, #e5e7eb);
}

.conversions-table th,
.conversions-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color, #eaeaea);
}

.conversions-table th {
    font-weight: 600;
    color: var(--text-secondary, #666);
    background-color: var(--table-header-bg, #f9fafb);
    white-space: nowrap;
}

.conversions-table tr:hover td {
    background-color: var(--table-hover, #f3f4f6);
}

.conversions-table td:nth-child(1) span {
    display: inline-block;
    white-space: nowrap;
}

.conversions-table td:nth-child(2) {
    word-break: break-all; /* Break at any character */
    overflow-wrap: anywhere; /* Allow breaking anywhere */
    min-width: 200px;
}

.conversions-table td:nth-child(4) {
    white-space: nowrap;
}

.conversions-table td:nth-child(6) {
    text-align: center;
    padding: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary, #666);
    display: none;
}

.empty-state p  {
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid var(--border-color, #eaeaea);
    background-color: var(--card-bg, #fff);
    border-radius: 4px;
    cursor: pointer;
}

.pagination button.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Settings Tabs */
.settings-tabs {
    margin-top: 1rem;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--border-color, #eaeaea);
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary, #666);
    margin-right: 1rem;
}

.tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Forms */
.settings-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px !important;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    height: 48px !important;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 4px;
    background-color: var(--input-bg, #fff);
}

.form-group input:disabled {
    background-color: var(--input-disabled, #f3f4f6);
    cursor: not-allowed;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Theme Selector */
.theme-selector {
    display: flex;
    gap: 1rem;
}

.theme-option {
    flex: 1;
    cursor: pointer;
}

.theme-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.theme-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 8px;
    border: 2px solid var(--border-color, #eaeaea);
    transition: border-color 0.2s;
}

.theme-option input:checked + .theme-preview {
    border-color: #3b82f6;
}

.theme-preview.light {
    background-color: #fff;
    color: #444;
}

.theme-preview.dark {
    background-color: #1f2937;
    color: #f0f0f0;
}

.theme-preview.system {
    background: linear-gradient(to right, #fff 50%, #1f2937 50%);
    color: #444;
    position: relative;
}

.theme-preview.system::before {
    content: "Sys";
    position: absolute;
    color: #444;
    right: 50%;
    text-align: right;
    width: 50%;
    overflow: hidden;
}
.theme-preview.system::after {
    content: "tem";
    position: absolute;
    color: #f0f0f0;
    left: 51%;
    text-align: left;
    width: 50%;
    overflow: hidden;
}


/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin-right: 0.75rem;
}

/* Profile Picture */
.avatar-upload {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color, #eaeaea);
}

.avatar-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Security Options */
.security-options {
    margin-top: 3rem;
}

.connected-accounts {
    margin: 1rem 0 2rem;
}

.connected-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.connected-account-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connected-account-icon {
    width: 24px;
    height: 24px;
}

.danger-zone {
    padding: 1.5rem;
    border: 1px dashed #ef4444;
    border-radius: 8px;
    margin-top: 1rem;
}

.danger-btn {
    background-color: #ef4444;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.warning-text {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.75rem;
}

/* Billing Section */
.current-plan-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.plan-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.plan-details {
    color: var(--text-secondary, #666);
    margin-bottom: 1rem;
}

.plan-limits {
    display: flex;
    gap: 2rem;
}

.limit-item {
    display: flex;
    flex-direction: column;
}

.limit-label {
    font-size: 0.875rem;
    color: var(--text-secondary, #666);
}

.limit-value {
    font-weight: 600;
}

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

.billing-table th,
.billing-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color, #eaeaea);
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.payment-method-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    width: 40px;
    height: 24px;
}

.payment-method-form {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color, #eaeaea);
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 800px) {
    .dashboard-content {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        flex: 0 0 auto;
    }

    .progress-bar {
        margin: 0.5rem 0;
    }
    
    .overview-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plan-limits {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .current-plan-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Fix sticky navigation implementation */
@media (max-width: 800px) {
    .dashboard-sidebar-container {
        position: static;
    }
    
    .dashboard-nav {
        position: -webkit-sticky; /* Safari */
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--card-bg);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        height: auto;
        min-height: 50px;
    }
    
    .dashboard-nav ul {
        height: 100%;
    }
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    position: relative;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transform: translateX(0);
    transition: all 0.3s ease;
}

.notification.closing {
    transform: translateX(100%);
    opacity: 0;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-content p {
    margin: 0;
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
}

/* Notification Types */
.notification.info {
    background: #3498db;
}

.notification.success {
    background: #2ecc71;
}

.notification.error {
    background: #e74c3c;
}

.notification.warning {
    background: #f39c12;
}

/* Dark Theme Styles */
.dark-theme {
  --text-color: #f9fafb;
  --text-secondary: #9ca3af;
  --card-bg: #1f2937;
  --border-color: #374151;
  --background-color: #111827;
  --table-hover: #1f2937;
}

.dark-theme .dashboard-container {
  background-color: var(--background-color);
  color: var(--text-color);
}

.dark-theme .dashboard-header,
.dark-theme .dashboard-card {
  background-color: var(--card-bg);
  border-color: var(--border-color);
  color: var(--text-color);
}

.dark-theme .stat-item,
.dark-theme .user-stats {
  background-color: var(--card-bg);
  color: var(--text-color);
}

.dark-theme table {
  background-color: var(--card-bg);
}

.dark-theme th,
.dark-theme td {
  border-color: var(--border-color);
  color: var(--text-color);
}

.dark-theme tr:hover {
  background-color: var(--table-hover);
}

.dark-theme .dashboard-sidebar.mobile-only {
    background: #1f2937;
    border-color: #374151;
}

.dark-theme .user-stats {
    background: #1f2937;
    border-color: #374151;
}

.dark-theme .stat-label {
    color: #9ca3af;
}

.dark-theme .stat-value {
    color: #f9fafb;
}

.dark-theme .progress-bar {
    background-color: #374151;
}

.dark-theme .dashboard-nav ul {
    background: #1f2937;
    border-color: #374151;
}

.dark-theme .dashboard-nav a {
    color: #9ca3af;
}

.dark-theme .dashboard-nav a:hover {
    color: #60a5fa;
    background-color: rgba(96, 165, 250, 0.1);
}

.dark-theme .dashboard-nav li.active a {
    color: #60a5fa;
    background-color: #1f2937;
    box-shadow: 0 -2px 0 #60a5fa inset;
}

.dark-theme #addPaymentMethodBtn {
    background-color: var(--button-bg-color); /* Active color like upload-btn */
    color: var(--button-text-color);
}

.dark-theme #addPaymentMethodBtn:hover {
    background-color: var(--button-bg-hover-color);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #f9fafb;
        --text-secondary: #9ca3af;
        --card-bg: #1f2937;
        --border-color: #374151;
        --table-header-bg: #111827;
        --table-hover: #111827;
        --input-bg: #111827;
        --input-disabled: #374151;
        --button-secondary-bg: #374151;
        --button-secondary-hover: #4b5563;
    }
}

/* Make tab buttons narrower on mobile */
@media (max-width: 800px) {
    .tab-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
        margin-right: 0.5rem;
    }
}

/* Date styling */
.date-part {
    white-space: nowrap;
    display: inline-block;
}

.time-part {
    white-space: nowrap;
    display: inline-block;
}

.status-success {
    color: #008b00;
}

.status-deleted {
    color: #d00000;
}

.status-expired {
    color: #d00000;
}