:root {
    --aniane-blue: #0055A4;
    --aniane-blue-rgb: 0, 85, 164;
    --aniane-yellow: #FCD21C;
    --aniane-yellow-rgb: 252, 210, 28;
    --aniane-blue-dark: #003D7A;
    --aniane-light: #F0F7FF;
}

body {
    background-color: var(--aniane-light);
    color: #002D57;
}

.text-success {
    color: var(--aniane-blue) !important;
}

.bg-success {
    background-color: rgba(var(--aniane-blue-rgb), var(--bs-bg-opacity, 1)) !important;
    color: white !important;
}

.bg-success-subtle {
    background-color: #E6F0FF !important;
}

.border-success-subtle {
    border-color: #B3D1FF !important;
}

.alert-success {
    background-color: #E6F0FF !important;
    border-color: #B3D1FF !important;
    color: var(--aniane-blue) !important;
}

.btn-success {
    background-color: var(--aniane-blue) !important;
    border-color: var(--aniane-blue) !important;
    color: #fff !important;
    font-weight: 600;
}

.btn-success:hover {
    background-color: var(--aniane-blue-dark) !important;
    border-color: var(--aniane-blue-dark) !important;
    color: #fff !important;
}

.btn-outline-success {
    color: var(--aniane-blue) !important;
    border-color: var(--aniane-blue) !important;
}

.btn-outline-success:hover {
    background-color: var(--aniane-blue) !important;
    color: #fff !important;
}

.text-warning {
    color: var(--aniane-yellow) !important;
}

.badge.bg-warning {
    background-color: var(--aniane-yellow) !important;
    color: #000 !important;
}

.user-location-icon {
    background: transparent;
    border: 0;
}

.user-location-icon .pin {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(var(--aniane-blue-rgb), 0.85);
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(var(--aniane-blue-rgb), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.user-location-icon .pin i {
    font-size: 14px;
    line-height: 1;
}

.user-location-icon .halo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(var(--aniane-blue-rgb), 0.35);
    animation: user-location-pulse 1.8s ease-out infinite;
}

@keyframes user-location-pulse {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}
