/* Default Theme - Original Pink/Blue Color Scheme */
:root {
    --bs-primary: #FF4880;
    --bs-secondary: #4D65F9;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #FFECF2;
    --bs-dark: #393D72;
    --theme-primary: #FF4880;
    --theme-secondary: #4D65F9;
}

.text-primary {
    color: var(--bs-primary) !important;
    color: #FF4880 !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
    background-color: #FF4880 !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
    color: #4D65F9 !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
    background-color: #4D65F9 !important;
}

.btn-primary {
    background-color: #FF4880;
    border-color: #FF4880;
    border: 0;
    color: var(--bs-white);
}

.btn-primary:hover {
    background: var(--bs-secondary);
    background: #4D65F9;
    color: var(--bs-primary);
    color: #FF4880;
}

.border-primary {
    border-color: #FF4880 !important;
}

.border-secondary {
    border-color: #4D65F9 !important;
}

/* Header background */
.header-wrapper {
    background-color: #FFECF2 !important;
}

.topbar-outer {
    background-color: #FFECF2 !important;
}

.navbar {
    background-color: #FFECF2 !important;
}

