:root {
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(0, 0, 0, 0.06);
    --card-hover: rgba(255, 255, 255, 0.95);
    --glass-blur: blur(20px);

    --gradient-primary: linear-gradient(135deg, #7c3aed, #6366f1);
    --gradient-accent: linear-gradient(135deg, #f59e0b, #ef4444);
    --gradient-text: linear-gradient(135deg, #7c3aed, #3b82f6);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.08), transparent 60%);

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8888a0;

    --accent: #7c3aed;
    --accent-hover: #6d28d9;
    --accent-soft: rgba(124, 58, 237, 0.08);

    --success: #10b981;
    --success-soft: rgba(16, 185, 129, 0.1);
    --danger: #ef4444;
    --danger-soft: rgba(239, 68, 68, 0.08);
    --warning: #f59e0b;
    --warning-soft: rgba(245, 158, 11, 0.1);

    --takedown: #6b7280;
    --takedown-soft: rgba(107, 114, 128, 0.12);

    --shadow-lg: 0 20px 60px -12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 30px -8px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.1);

    --radius-xl: 16px;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 6px;
    --radius-full: 9999px;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

::selection {
    background: rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 10px 32px;
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.15);
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand-text h2 {
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.navbar-brand-text span {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    -webkit-text-fill-color: var(--text-muted);
    font-weight: 600;
}

.navbar-actions {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-actions button {
    padding: 7px 18px;
    font-size: 0.78rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.navbar-actions button.nav-active {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.container {
    max-width: 1200px;
    margin: 28px auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 28px;
    align-items: start;
    animation: fadeInUp 0.5s ease-out;
}

.container.full-width {
    grid-template-columns: 1fr !important;
    max-width: 1100px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 24px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-lg);
}

.card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
    letter-spacing: -0.2px;
}

.card h4 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 11px 14px;
    background: var(--bg-secondary);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    transition: var(--transition);
    outline: none;
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

input::placeholder, textarea::placeholder {
    color: var(--text-muted);
}

input[type="file"] {
    padding: 7px 10px;
    cursor: pointer;
    font-size: 0.82rem;
}

input[type="file"]::file-selector-button {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    margin-right: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.78rem;
}

input[type="file"]::file-selector-button:hover {
    background: rgba(0, 0, 0, 0.08);
}

input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

button, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.83rem;
    font-weight: 600;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    letter-spacing: 0.2px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

button:hover, .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
}

button:active, .btn:active {
    transform: translateY(0);
    box-shadow: none;
}

button.secondary {
    background: rgba(0, 0, 0, 0.04);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    box-shadow: none;
}

button.secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: none;
    transform: translateY(-1px);
}

button.danger {
    background: var(--danger-soft);
    border: 1.5px solid rgba(239, 68, 68, 0.15);
    color: var(--danger);
    box-shadow: none;
}

button.danger:hover {
    background: var(--danger);
    color: white;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.2);
}

button.small {
    padding: 6px 14px;
    font-size: 0.78rem;
    width: auto;
}

.track-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px;
    margin-bottom: 10px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.track-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

.admin-track-list-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 10px 14px;
    margin-bottom: 6px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.admin-track-list-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    gap: 4px;
}

.badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}

.badge.pending {
    background: var(--warning-soft);
    color: #b45309;
}

.badge.pending::before {
    background: var(--warning);
}

.badge.approved {
    background: var(--success-soft);
    color: #047857;
}

.badge.approved::before {
    background: var(--success);
}

.badge.rejected {
    background: var(--danger-soft);
    color: #b91c1c;
}

.badge.rejected::before {
    background: var(--danger);
}

.badge.takedown {
    background: var(--takedown-soft);
    color: #4b5563;
}

.badge.takedown::before {
    background: var(--takedown);
}

#chatBoxContainer {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    height: calc(100vh - 160px);
}

#noChatSelected {
    display: flex;
    min-height: 600px;
    height: calc(100vh - 160px);
}

#chatArtistList {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    height: calc(100vh - 160px);
}

#activeChatsList {
    flex: 1;
    overflow-y: auto;
}

@media (max-width: 1100px) {
    #chatBoxContainer {
        height: 440px;
        min-height: 440px;
    }

    #noChatSelected {
        min-height: 360px;
        height: auto;
    }

    #chatArtistList {
        height: auto;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    #noChatSelected {
        min-height: 280px;
    }
}

#chatHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 14px 0;
    border-bottom: 1px solid var(--card-border);
    flex-shrink: 0;
}

#chatHeader .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

#chatHeader .chat-partner-info {
    flex: 1;
}

#chatHeader .chat-partner-info h3 {
    margin: 0;
    font-size: 0.95rem;
    border: none;
    padding: 0;
    letter-spacing: -0.2px;
}

#chatHeader .chat-partner-info .chat-status {
    font-size: 0.65rem;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

#chatHeader .chat-partner-info .chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    display: inline-block;
}

/* Chat box - message area */
.chat-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f8f9fb;
}

.msg {
    max-width: 65%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.92rem;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Το animation θα εκτελείται ΜΟΝΟ όταν μπαίνει αυτή η κλάση */
.msg.new-msg {
    animation: fadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes msgIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.msg.incoming {
    background: #fff;
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.msg.outgoing {
    background: var(--gradient-primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 10px rgba(124,58,237,0.18);
}

.msg .sender-name {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.msg.incoming .sender-name { color: var(--accent); }
.msg.outgoing .sender-name { color: rgba(255,255,255,0.55); }

.msg .msg-text {
    display: block;
    word-break: break-word;
}

/* Input area */
.chat-input-area {
    display: flex;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.chat-input-area input {
    flex: 1;
    border-radius: 22px;
    padding: 10px 18px;
    background: #f3f4f6;
    border: none;
    font-size: 0.88rem;
    transition: var(--transition);
    outline: none;
}

.chat-input-area input:focus {
    background: #e5e7eb;
}

.chat-input-area button {
    width: auto;
    padding: 10px 22px;
    border-radius: 22px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.83rem;
}

/* Artist list items */
.artist-chat-item {
    padding: 12px 14px;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
}

.artist-chat-item:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(124,58,237,0.08);
}

.artist-chat-item.active {
    background: var(--accent-soft);
    border-color: var(--accent);
    font-weight: 600;
}

.artist-chat-item .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.artist-chat-item .chat-contact-name {
    flex: 1;
    color: var(--text-primary);
}

.artist-chat-item.active .chat-contact-name {
    color: var(--accent);
}

/* Chat empty state */
.chat-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px;
    height: 100%;
}

.chat-empty-state .empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent);
}

.chat-empty-state p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    max-width: 260px;
}

/* Chat date divider */
.chat-date-divider {
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 16px 0 8px 0;
    position: relative;
}

.chat-date-divider::before,
.chat-date-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28%;
    height: 1px;
    background: rgba(0,0,0,0.06);
}

.chat-date-divider::before { left: 0; }
.chat-date-divider::after { right: 0; }

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 80px auto;
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.login-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 14px;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}

.login-container h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 3px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.login-container button {
    margin-top: 6px;
    border-radius: var(--radius-full);
}

.login-container .input-group {
    text-align: left;
}

#error-message {
    color: var(--danger);
    font-size: 0.82rem;
    margin-top: 10px;
    display: none;
    padding: 8px 12px;
    background: var(--danger-soft);
    border-radius: var(--radius-md);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

/* ==========================================================================
    ARTIST MANAGEMENT TABLE
   ========================================================================== */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px;
}

.artist-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.artist-table th {
    text-align: left;
    padding: 10px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

.artist-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}

.artist-table tr {
    transition: var(--transition);
}

.artist-table tr:hover td {
    background: rgba(124, 58, 237, 0.03);
}

.artist-table .actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.artist-table .actions button {
    width: auto;
    padding: 5px 12px;
    font-size: 0.75rem;
}

/* ==========================================================================
    MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.2s ease-out;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    animation: modalIn 0.25s ease-out;
    position: relative;
}

.modal h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
}

.modal .input-group {
    margin-bottom: 14px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-actions button {
    flex: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 0;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    transform: none;
    box-shadow: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-state {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.empty-state p {
    margin-bottom: 4px;
}

/* ==========================================================================
    RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
        margin: 20px auto;
    }

    .container#tabChat {
        grid-template-columns: 1fr !important;
    }

    .msg {
        max-width: 85%;
    }

    .artist-chat-item {
        padding: 10px 12px;
    }

    .chat-empty-state {
        padding: 40px 16px;
    }

    .chat-empty-state .empty-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .artist-table {
        font-size: 0.8rem;
    }

    .artist-table th,
    .artist-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 8px;
        padding: 10px 12px;
    }

    .navbar-actions {
        width: 100%;
        justify-content: center;
    }

    .navbar-actions button {
        font-size: 0.75rem;
        padding: 7px 14px;
    }

    .card {
        padding: 16px;
    }

    .card h3 {
        font-size: 0.95rem;
    }

    .msg {
        max-width: 92%;
    }

    .artist-chat-item {
        padding: 10px 12px;
    }

    .chat-input-area {
        padding: 8px 12px;
    }

    .chat-input-area input {
        padding: 8px 14px;
    }

    .chat-messages {
        padding: 12px;
    }

    .chat-date-divider::before,
    .chat-date-divider::after {
        width: 20%;
    }

    .login-container {
        margin: 40px 12px;
        padding: 28px 20px;
    }

    .modal {
        padding: 24px 20px;
        max-width: 100%;
        margin: 0 10px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .container {
        padding: 0 12px;
        margin: 16px auto;
    }

    .artist-table .actions {
        flex-direction: column;
    }

    .artist-table .actions button {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
    CUSTOM CONFIRM / ALERT DIALOG
   ========================================================================== */
.dialog-msg {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.dialog-actions {
    display: flex;
    gap: 10px;
}

.dialog-actions button {
    flex: 1;
}

@media (max-width: 600px) {
    .dialog-actions {
        flex-direction: column;
    }
}
