body:has(.auth-core-login-container),
body.auth-core-login-page,
body:has(.auth-core-verify-device),
body:has(.auth-core-choose-plans),
body:has(.auth-core-active-tv) {
    background: #EAEAEA;
}

.auth-core-login-container {
    width: 300px;
    max-width: 300px;
    margin: 40px auto;
    padding: 0;
    background: transparent;
}

.login-icon {
    text-align: center;
    margin-bottom: 20px;
}

.login-icon img {
    width: 120px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.login-subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.auth-core-form {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #eaeaea !important;
    color: #090013 !important;
    font-size: 14px;
}

.auth-core-button {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    color: #2D2D2D;
    background: #FCA310;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-core-button:hover {
    background: #FCA310;
}

.auth-core-button-danger {
    background: #dc3545;
}

.auth-core-button-danger:hover {
    background: #c82333;
}

.auth-core-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.auth-core-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.auth-core-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.auth-core-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-core-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.auth-core-divider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    color: #666;
}

.auth-core-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.auth-core-dashboard,
.auth-core-profile,
.auth-core-devices,
.auth-core-subscription {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.internal-sidebar {
    flex: 0 0 200px;
    min-width: 200px;
}

.internal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internal-nav li {
    margin-bottom: 0;
}

.internal-nav a {
    display: flex;
    align-items: center;
    padding: 15px 10px 10px 15px;
    color: #fffefe;
    text-decoration: none;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 4px;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.internal-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FCA310;
}

.internal-nav a.active {
    background: rgba(252, 163, 16, 0.2);
    color: #FCA310;
    font-weight: 600;
}

.sidebar-user-info {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.sidebar-welcome {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.sidebar-logout {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logout .auth-core-button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

.mobile-only {
    display: none;
}

.dashboard-header,
.internal-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    margin-top: -15px;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px 0;
    position: relative;
    z-index: 60;
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 60;
}

.dashboard-header h2,
.internal-dashboard-header h2 {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fffefe;
    margin: 0;
    line-height: 1.2;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.internal-dashboard-header.sidebar-open h2 {
    opacity: 0;
    visibility: hidden;
}

.dashboard-header .auth-core-button,
.internal-dashboard-header .auth-core-button {
    width: auto;
    padding: 10px 20px;
}

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

.auth-core-dashboard .dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.dashboard-section {
    background: #2D2D2D;
    padding: 25px;
    margin-bottom: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-section h3 {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fffefe;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.dashboard-section p {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    margin-bottom: 10px;
    line-height: 1.4;
}

.dashboard-section strong {
    color: #fffefe;
    font-weight: 600;
}

.dashboard-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-section ul li {
    margin-bottom: 10px;
}

.dashboard-section ul li a {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #FCA310;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.dashboard-section ul li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.profile-section {
    background: #2D2D2D;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-section h3 {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fffefe;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.profile-section .form-group {
    margin-bottom: 20px;
}

.profile-section .form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    color: #fffefe;
}

.profile-section .form-group input[type="text"],
.profile-section .form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fffefe;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.profile-section .form-group input[type="email"]:disabled {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.6;
}

.profile-section p {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    margin-bottom: 15px;
    line-height: 1.4;
}

.profile-section strong {
    color: #fffefe;
    font-weight: 600;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.device-card {
    background: #2D2D2D;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-card h3 {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin-top: 0;
    margin-bottom: 15px;
    color: #fffefe;
    font-size: 18px;
    font-weight: 600;
}

.device-item {
    background: #2D2D2D;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.device-item p {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    margin-bottom: 12px;
    line-height: 1.4;
}

.device-item p:last-of-type {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.device-item strong {
    color: #fffefe;
    font-weight: 600;
    font-size: 16px;
}

.revoke-device-btn {
    background-color: #dc3545;
    color: #fffefe;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.revoke-device-btn:hover {
    background-color: #c82333;
}

.auth-core-devices h3 {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

#auth-core-devices-list p {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    line-height: 1.4;
}

#auth-core-devices-list .error {
    color: #ff6b6b;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.subscription-card {
    background: #2D2D2D;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-card h3 {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fffefe;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.subscription-card p {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    margin-bottom: 12px;
    line-height: 1.4;
}

.subscription-card strong {
    color: #fffefe;
    font-weight: 600;
}

.status-active {
    color: #28a745;
    font-weight: 600;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.status-cancelled {
    color: #dc3545;
    font-weight: 600;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.status-expired {
    color: #ff6b6b;
    font-weight: 600;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.auth-core-subscription h3 {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

#auth-core-subscription-details {
    background: #2D2D2D;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#auth-core-subscription-details p {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fffefe;
    margin-bottom: 12px;
    line-height: 1.4;
}

#auth-core-subscription-details strong {
    color: #fffefe;
    font-weight: 600;
}

#auth-core-subscription-details .error {
    color: #ff6b6b;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.auth-core-loading,
.auth-core-verifying {
    text-align: center;
    padding: 40px 20px;
}

.auth-core-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

.auth-core-verify-device {
    width: 300px;
    max-width: 300px;
    margin: 40px auto;
    padding: 0;
    background: transparent;
}

.auth-core-verify-device h2 {
    display: none;
}

.auth-core-verify-device p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.auth-core-verify-device form {
    margin-bottom: 20px;
}

.auth-core-verify-device input[type="text"],
.auth-core-verify-device input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #eaeaea !important;
    color: #090013 !important;
    font-size: 14px;
    margin-bottom: 15px;
}

.auth-core-verify-device input[type="text"]#user-code,
.auth-core-verify-device input[type="text"]#user-code-logged {
    text-transform: uppercase;
}

.auth-core-verify-device button[type="submit"] {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    color: #2D2D2D;
    background: #FCA310;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 0 !important;
}

.auth-core-verify-device button[type="submit"]:hover {
    opacity: 0.9;
}

.auth-core-verify-device label {
    display: none;
}

#code-result,
#verify-result {
    margin-top: 20px;
}

#code-result p,
#verify-result p {
    padding: 12px;
    border-radius: 8px;
    margin: 0;
}

#device-selection {
    margin-top: 20px;
}

#device-selection h3 {
    color: #d63638;
    margin-bottom: 15px;
}

#device-selection p {
    margin-bottom: 15px;
}

.auth-core-choose-plans {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: transparent;
}

.auth-core-choose-plans h2 {
    display: none;
}

.choose-plans-image {
    text-align: center;
    margin-bottom: 30px;
}

.choose-plans-image img {
    width: 600px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.choose-plans-subtitle {
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #090013;
    margin-bottom: 30px;
    line-height: 1.6;
    direction: rtl;
}

@media (min-width: 768px) {
    .choose-plans-subtitle {
        font-size: 32px;
    }
}

.choose-plans-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.choose-plans-image-item {
    flex: 0 0 auto;
    text-align: center;
}

.plan-image-link {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.plan-image-link:hover img {
    opacity: 0.9;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.plan-description {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #090013;
    margin-bottom: 10px;
    direction: rtl;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .plan-description {
        font-size: 16px;
    }
}

.choose-plans-image-item img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.choose-plans-not-now {
    text-align: center;
    margin-top: 30px;
}

.not-now-button {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #090013;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.not-now-button:hover {
    opacity: 0.8;
}

#auth-core-plans-list {
    margin-top: 30px;
}

body:has(.auth-core-active-tv) .auth-core-login-container {
    width: 600px;
    max-width: 600px;
}

.active-tv-title {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #090013;
    text-align: center;
    margin-bottom: 20px;
    direction: ltr;
}

.active-tv-description {
    font-family: 'IRANYekanX', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #090013;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    direction: ltr;
}

.auth-core-button {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Mobile Menu Toggle Button (z-index below site header dropdown so main nav stays on top) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fffefe;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .dashboard-wrapper {
        gap: 20px;
    }
    
    .internal-sidebar {
        flex: 0 0 180px;
        min-width: 180px;
    }
    
    .auth-core-dashboard .dashboard-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .dashboard-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-only {
        display: block;
    }
    
    .dashboard-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .internal-sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        height: 100vh;
        width: 250px;
        background: #2D2D2D;
        z-index: 50;
        transition: left 0.3s ease;
        padding: 60px 20px 20px;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
    }
    
    .internal-sidebar.active {
        left: 0;
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 49;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .dashboard-content {
        width: 100%;
        padding: 0 20px;
    }
    
    .auth-core-dashboard .dashboard-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .dashboard-section {
        padding: 20px;
    }
    
    .internal-dashboard-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 0 20px 20px;
    }
    
    .internal-dashboard-header h2 {
        font-size: 18px;
        flex: 1;
        margin: 0;
    }
    
    .internal-dashboard-header .auth-core-button {
        display: none;
    }
    
    .internal-nav {
        flex: 1;
    }
    
    .auth-core-dashboard,
    .auth-core-profile,
    .auth-core-devices,
    .auth-core-subscription {
        padding: 0;
    }
    
    .device-item {
        padding: 20px;
    }
    
    #auth-core-subscription-details {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .internal-sidebar {
        width: 100%;
        left: -100%;
    }
    
    .dashboard-section {
        padding: 15px;
    }
    
    .dashboard-section h3 {
        font-size: 18px;
    }
    
    .internal-dashboard-header h2 {
        font-size: 18px;
    }
    
    .device-item {
        padding: 15px;
    }
    
    #auth-core-subscription-details {
        padding: 15px;
    }
    
    .profile-section {
        padding: 15px;
    }
}

/* Logout confirmation popup */
.auth-core-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.auth-core-logout-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    min-width: 280px;
}

.auth-core-logout-popup-title {
    margin: 0 0 24px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.auth-core-logout-popup-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-core-logout-popup-actions .auth-core-button {
    width: auto;
    min-width: 100px;
}

.auth-core-logout-popup-cancel {
    background: #6c757d !important;
}

.auth-core-logout-popup-cancel:hover {
    background: #5a6268 !important;
}

.auth-core-logout-popup-confirm {
    background: #dc3545 !important;
}

.auth-core-logout-popup-confirm:hover {
    background: #c82333 !important;
}
