/* Reset Link Modal Styles */
.reset-link-modal {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.reset-link-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.reset-link-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reset-link-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.reset-link-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.reset-link-url {
    border: 1px solid #d1d5db;
    background: #ffffff;
    width: 100%;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 11px;
    line-height: 1.4;
    color: #1e293b;
    word-break: break-all;
    white-space: pre-wrap;
    height: 80px;
    overflow: hidden;
    user-select: all;
    cursor: text;
    padding: 8px;
    border-radius: 4px;
    resize: none;
}

.reset-link-url:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.reset-link-url:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.copy-reset-link-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-reset-link-button:hover {
    background: #059669;
}

.copy-reset-link-button:active {
    transform: translateY(1px);
}
