/* ResvBAR — أزرار الشرائط العائمة (كوكيز · PWA · إشعارات) — مصدر واحد */

.rv-cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.rv-cc-btn--primary {
    background: #01305f;
    color: #fff;
    box-shadow: 0 4px 14px rgba(1, 48, 95, 0.28);
    min-width: 7.5rem;
}

.rv-cc-btn--primary:hover {
    background: #0089bf;
}

.rv-cc-btn--primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.rv-cc-btn--muted {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.rv-cc-btn--muted:hover {
    background: #e2e8f0;
}

.rv-cc-btn--link {
    background: transparent;
    color: #0089bf;
    min-height: 42px;
    padding-inline: 0.625rem;
}

.rv-cc-btn--link:hover {
    color: #01305f;
}

.rv-cc-btn:focus-visible {
    outline: 2px solid #0089bf;
    outline-offset: 2px;
}
