/* ==================== Enterprise 2FA Token View ==================== */
.enterprise-2fa-container {
    padding: 24px 0;
    max-width: 100%;
}

.clients-2fa-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

/* Card Styling */
.client-2fa-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.client-2fa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.client-2fa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
    border-color: var(--primary);
}

.client-2fa-card:hover::before {
    opacity: 1;
}

/* Disable hover effects on mobile */
@media (max-width: 768px) {
    .client-2fa-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-color: var(--border);
    }
    
    .client-2fa-card:hover::before {
        opacity: 0;
    }
    
    .client-2fa-card-row:hover {
        transform: none;
        background: var(--bg-tertiary);
        border-color: transparent;
    }
    
    .btn-view-url:hover {
        transform: none;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }
    
    .btn-enable-disable:hover {
        transform: none;
    }
    
    .btn-enable-disable.enable:hover {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.15));
    }
    
    .btn-enable-disable.disable:hover {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.15));
    }
}

/* Card Header */
.client-2fa-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.client-2fa-card-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

/* Avatar */
.client-2fa-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.client-2fa-avatar.online::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: var(--success);
    border: 3px solid var(--bg-card);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.client-2fa-avatar.offline {
    opacity: 0.7;
    background: linear-gradient(135deg, var(--text-tertiary), var(--text-secondary));
    box-shadow: none;
}

.client-2fa-avatar.offline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: var(--error);
    border: 3px solid var(--bg-card);
    border-radius: 50%;
}

/* Client Info */
.client-2fa-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.client-2fa-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
}

.client-2fa-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.client-2fa-meta span {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-2fa-card-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Timer Container */
.timer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius-sm);
    min-width: 90px;
}

.timer-container.expired {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.timer-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.timer-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.timer-container.expired .timer-value {
    color: var(--error);
    font-size: 14px;
}

/* Card Body */
.client-2fa-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-2fa-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.client-2fa-card-row:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(4px);
}

.client-2fa-card-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.method-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.client-2fa-card-row-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Method Item */
.method-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 14px;
    color: var(--text-primary);
    min-width: 0;
    overflow: hidden;
}

.method-item-small svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: var(--primary);
    flex-shrink: 0;
    opacity: 0.8;
}

.method-item-small .method-label {
    font-weight: 600;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

/* Buttons */
.btn-enable-disable {
    padding: 8px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-enable-disable::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enable-disable:hover::before {
    width: 300px;
    height: 300px;
}

.btn-enable-disable.enable {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.15));
    color: var(--success);
    border: 1px solid var(--success);
}

.btn-enable-disable.enable:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-enable-disable.disable {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.15));
    color: var(--error);
    border: 1px solid var(--error);
}

.btn-enable-disable.disable:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-view-url {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.3px;
}

.btn-view-url:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.btn-view-url:active {
    transform: translateY(0);
}

.btn-view-url svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.status-badge.online {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.1));
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.offline {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.1));
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Empty State */
.enterprise-2fa-container .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.enterprise-2fa-container .empty-state svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.enterprise-2fa-container .empty-state p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.enterprise-2fa-container .empty-state small {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Token Expired Alert */
.token-expired-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius);
    color: #ef4444;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    animation: pulse-alert 2s ease-in-out infinite;
}

.token-expired-alert svg {
    flex-shrink: 0;
    stroke: #ef4444;
}

@keyframes pulse-alert {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        opacity: 0.9;
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }
}

/* Expired Row Styling */
.client-2fa-card-row.expired-row {
    opacity: 0.6;
    position: relative;
}

.client-2fa-card-row.expired-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(239, 68, 68, 0.5);
    transform: translateY(-50%);
}

/* View Header Mobile */
@media (max-width: 768px) {
    #enterprise-2fa-token-view .view-header {
        margin-bottom: 20px;
        padding: 0 8px;
    }
    
    #enterprise-2fa-token-view .view-header h1 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    #enterprise-2fa-token-view .view-header p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #enterprise-2fa-token-view .view-header {
        margin-bottom: 16px;
        padding: 0 4px;
    }
    
    #enterprise-2fa-token-view .view-header h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    #enterprise-2fa-token-view .view-header p {
        font-size: 13px;
    }
}

/* Responsive - Tablets and Mobile */
@media (max-width: 768px) {
    .enterprise-2fa-container {
        padding: 12px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .clients-2fa-grid {
        gap: 14px;
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Main Card - Mobile Optimization */
    .client-2fa-card {
        padding: 16px;
        gap: 14px;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    /* Card Header - Stack vertically on mobile */
    .client-2fa-card-header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    
    /* Header Left Section */
    .client-2fa-card-header-left {
        width: 100%;
        gap: 12px;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    /* Avatar - Smaller on mobile */
    .client-2fa-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .client-2fa-avatar.online::after,
    .client-2fa-avatar.offline::after {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    /* Client Info - Better text wrapping */
    .client-2fa-info {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .client-2fa-name {
        font-size: 16px;
        margin-bottom: 8px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    /* Meta Information - Stack vertically */
    .client-2fa-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .client-2fa-meta span {
        font-size: 12px;
        line-height: 1.4;
        width: 100%;
    }
    
    /* Header Right Section - Full width timer */
    .client-2fa-card-header-right {
        width: 100%;
        justify-content: stretch;
        align-items: stretch;
    }
    
    /* Timer Container - Full width on mobile */
    .timer-container {
        width: 100%;
        min-width: auto;
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
    }
    
    .timer-label {
        font-size: 11px;
    }
    
    .timer-value {
        font-size: 18px;
    }
    
    /* Card Body - Sub-cards */
    .client-2fa-card-body {
        gap: 10px;
        width: 100%;
    }
    
    /* Sub-card Rows - Stack vertically */
    .client-2fa-card-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Row Left - Full width */
    .client-2fa-card-row-left {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    /* Method Item - Full width */
    .method-item-small {
        width: 100%;
        flex: 1;
        min-width: 0;
    }
    
    .method-item-small svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .method-label {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Row Right - Full width button */
    .client-2fa-card-row-right {
        width: 100%;
        justify-content: stretch;
        align-items: stretch;
    }
    
    /* Buttons - Full width and touch-friendly */
    .btn-view-url {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
        min-height: 48px;
        box-sizing: border-box;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
        touch-action: manipulation;
    }
    
    .btn-view-url svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-enable-disable {
        width: 100%;
        min-height: 48px;
        padding: 14px 20px;
        font-size: 13px;
        box-sizing: border-box;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
        touch-action: manipulation;
    }
    
    /* Improve touch targets */
    .client-2fa-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    .client-2fa-card-row {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Status Badge - Smaller on mobile */
    .status-badge {
        font-size: 11px;
        padding: 6px 12px;
        line-height: 1.2;
    }
    
    /* Token Expired Alert */
    .token-expired-alert {
        padding: 12px 14px;
        font-size: 13px;
        margin-bottom: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Empty State */
    .enterprise-2fa-container .empty-state {
        padding: 40px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .enterprise-2fa-container .empty-state svg {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .enterprise-2fa-container .empty-state p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .enterprise-2fa-container .empty-state small {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .enterprise-2fa-container {
        padding: 10px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .clients-2fa-grid {
        gap: 12px;
        padding: 0 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Main Card - Compact padding */
    .client-2fa-card {
        padding: 14px;
        gap: 12px;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Card Header - Tighter spacing */
    .client-2fa-card-header {
        gap: 12px;
        padding-bottom: 12px;
        width: 100%;
    }
    
    /* Header Left - Compact */
    .client-2fa-card-header-left {
        gap: 10px;
    }
    
    /* Avatar - Smaller */
    .client-2fa-avatar {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .client-2fa-avatar.online::after,
    .client-2fa-avatar.offline::after {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    /* Client Name - Smaller font */
    .client-2fa-name {
        font-size: 15px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    /* Meta - Smaller text */
    .client-2fa-meta {
        gap: 5px;
    }
    
    .client-2fa-meta span {
        font-size: 11px;
        line-height: 1.4;
    }
    
    /* Timer Container - Compact */
    .timer-container {
        padding: 10px 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .timer-label {
        font-size: 10px;
    }
    
    .timer-value {
        font-size: 16px;
    }
    
    /* Card Body - Tighter gap */
    .client-2fa-card-body {
        gap: 8px;
    }
    
    /* Sub-card Rows - Compact */
    .client-2fa-card-row {
        padding: 12px;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Row Left - Compact spacing */
    .client-2fa-card-row-left {
        gap: 8px;
    }
    
    .method-item-small svg {
        width: 16px;
        height: 16px;
    }
    
    .method-label {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Buttons - Compact but still touch-friendly */
    .btn-view-url {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .btn-view-url svg {
        width: 16px;
        height: 16px;
    }
    
    .btn-enable-disable {
        padding: 12px 16px;
        font-size: 12px;
        min-height: 44px;
    }
    
    /* Status Badge - Smaller */
    .status-badge {
        font-size: 10px;
        padding: 5px 10px;
        line-height: 1.2;
    }
    
    /* Token Expired Alert - Compact */
    .token-expired-alert {
        padding: 10px 12px;
        font-size: 12px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .token-expired-alert svg {
        width: 14px;
        height: 14px;
    }
    
    /* Empty State - Compact */
    .enterprise-2fa-container .empty-state {
        padding: 30px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .enterprise-2fa-container .empty-state svg {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .enterprise-2fa-container .empty-state p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .enterprise-2fa-container .empty-state small {
        font-size: 11px;
        line-height: 1.4;
    }
}

/* Landscape Mobile - Optimize for horizontal space */
@media (max-width: 768px) and (orientation: landscape) {
    .enterprise-2fa-container {
        padding: 10px 0;
        width: 100%;
    }
    
    .clients-2fa-grid {
        gap: 12px;
        padding: 0 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Main Card - Compact vertical padding */
    .client-2fa-card {
        padding: 12px 16px;
        gap: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Card Header - Horizontal layout in landscape */
    .client-2fa-card-header {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding-bottom: 12px;
        width: 100%;
    }
    
    /* Header Left - Keep horizontal */
    .client-2fa-card-header-left {
        flex: 1;
        min-width: 0;
        gap: 12px;
    }
    
    /* Avatar - Slightly smaller */
    .client-2fa-avatar {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
    
    /* Client Name - Single line with ellipsis */
    .client-2fa-name {
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Meta - Horizontal layout */
    .client-2fa-meta {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .client-2fa-meta span {
        font-size: 11px;
    }
    
    /* Header Right - Auto width */
    .client-2fa-card-header-right {
        width: auto;
        flex-shrink: 0;
        justify-content: flex-end;
    }
    
    /* Timer Container - Compact horizontal */
    .timer-container {
        width: auto;
        min-width: 90px;
        padding: 8px 14px;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .timer-label {
        font-size: 10px;
    }
    
    .timer-value {
        font-size: 16px;
    }
    
    /* Card Body - Tighter gap */
    .client-2fa-card-body {
        gap: 8px;
    }
    
    /* Sub-card Rows - Horizontal layout when space allows */
    .client-2fa-card-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Row Left - Keep horizontal */
    .client-2fa-card-row-left {
        flex: 1;
        min-width: 0;
        gap: 10px;
    }
    
    .method-item-small {
        flex: 1;
        min-width: 0;
    }
    
    .method-label {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Row Right - Auto width */
    .client-2fa-card-row-right {
        width: auto;
        flex-shrink: 0;
        justify-content: flex-end;
    }
    
    /* Buttons - Auto width in landscape */
    .btn-view-url {
        width: auto;
        min-width: 100px;
        padding: 10px 18px;
        font-size: 13px;
        min-height: 40px;
    }
    
    .btn-enable-disable {
        width: auto;
        min-width: 90px;
        padding: 10px 18px;
        font-size: 12px;
        min-height: 40px;
    }
}
