/* ShareURL Theme - CG Blue Color Overrides */
:root {
    --cg-blue-400: #38a6ff;
    --cg-blue-500: #0084ff;
    --cg-blue-600: #0070db;
    --cg-blue-700: #005cb8;
}

/* Background colors */
.bg-blue-500 { background-color: var(--cg-blue-500) !important; }
.bg-blue-600 { background-color: var(--cg-blue-600) !important; }
.bg-blue-700 { background-color: var(--cg-blue-700) !important; }
.bg-blue-600\/20 { background-color: rgba(0, 132, 255, 0.2) !important; }

/* Text colors */
.text-blue-400 { color: var(--cg-blue-400) !important; }
.text-blue-500 { color: var(--cg-blue-500) !important; }

/* Border colors */
.border-blue-500 { border-color: var(--cg-blue-500) !important; }

/* Hover states */
.hover\:bg-blue-600:hover { background-color: var(--cg-blue-600) !important; }
.hover\:bg-blue-700:hover { background-color: var(--cg-blue-700) !important; }

/* Focus states */
.focus\:border-blue-500:focus { border-color: var(--cg-blue-500) !important; }
