/**
 * Royal Sentinel Passkeys Styling
 */

.rs-passkey-login-wrap {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.rs-login-passkey-btn {
    background-color: #f1f3f4 !important;
    color: #1a73e8 !important;
    border: 1px solid #dadce0 !important;
    border-radius: 4px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: 'Inter', 'Roboto', sans-serif !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: background-color 0.2s, box-shadow 0.2s !important;
    text-transform: none !important;
}

.rs-login-passkey-btn:hover {
    background-color: #f8f9fa !important;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15) !important;
    border-color: #dadce0 !important;
}

.rs-login-passkey-btn svg {
    width: 20px;
    height: 20px;
    stroke: #1a73e8;
}

.rs-passkey-status {
    min-height: 20px;
    color: #5f6368;
    font-size: 12px;
}

/* User Profile UI */
.rs-passkeys-list {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    max-width: 500px;
}

.rs-passkey-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rs-passkey-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.rs-passkey-items li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rs-revoke-passkey {
    color: #d63638 !important;
    border-color: #d63638 !important;
}
.rs-revoke-passkey:hover {
    background: #d63638 !important;
    color: #fff !important;
}

.rs-passkey-actions {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin-bottom: 5px;
}
