/* Recovery Codes Styles */
.recovery-codes-section {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.recovery-codes-header h4 {
    margin: 0 0 10px 0;
    color: #d32f2f;
    font-size: 16px;
    font-weight: 600;
}

.recovery-codes-header p {
    margin: 0 0 15px 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.recovery-codes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.recovery-code-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 8px 12px;
    text-align: center;
    font-family: monospace;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.recovery-code-item:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recovery-codes-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.recovery-codes-actions .button {
    flex: 1;
    min-width: 140px;
}

.button-danger,
.recovery-codes-actions .button-danger {
    background: #dc3545 !important;
    color: #fff !important;
    border-color: #dc3545 !important;
}

.button-danger:hover,
.recovery-codes-actions .button-danger:hover {
    background: #c82333 !important;
    border-color: #bd2130 !important;
}

.recovery-codes-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 12px;
    font-size: 13px;
    color: #856404;
    line-height: 1.4;
}

.recovery-codes-warning strong {
    color: #d68910;
}