/* Custom theme colors for Bootstrap */
:root {
    --bs-blue: #00afef;           /* Your site's blue */
    --bs-blue-rgb: 0, 175, 239;
    --bs-primary: #00afef; /* Your site's primary color */
    --bs-primary-rgb: 0, 175, 239;
    --bs-secondary: #3B91CF; /* Your site's secondary color */
    --bs-secondary-rgb: 59, 145, 207;
    --bs-success: #2d7a2d; /* Your site's success/green color */
    --bs-success-rgb: 45, 122, 45;
    --bs-warning: #e67e22; /* Your site's warning/orange color */
    --bs-warning-rgb: 230, 126, 34;
    --bs-danger: #c0392b; /* Your site's danger/red color */
    --bs-danger-rgb: 192, 57, 43;
    /* Keep other colors as they are or adjust as needed */
    --bs-indigo: #6610f2;
    --bs-indigo-rgb: 102, 16, 242;
    --bs-purple: #6f42c1;
    --bs-purple-rgb: 111, 66, 193;
    --bs-pink: #d63384;
    --bs-pink-rgb: 214, 51, 132;
    --bs-red: #c0392b; /* Changed to match your danger color */
    --bs-red-rgb: 192, 57, 43;
    --bs-orange: #e67e22; /* Changed to match your warning color */
    --bs-orange-rgb: 230, 126, 34;
    --bs-yellow: #ffc107;
    --bs-yellow-rgb: 255, 193, 7;
    --bs-green: #2d7a2d; /* Changed to match your success color */
    --bs-green-rgb: 45, 122, 45;
    --bs-teal: #20c997;
    --bs-teal-rgb: 32, 201, 151;
    --bs-cyan: #0dcaf0;
    --bs-cyan-rgb: 13, 202, 240;
    --bs-white: #fff;
    --bs-white-rgb: 255, 255, 255;
    --bs-gray: #5a6c7d; /* Changed to match your secondary */
    --bs-gray-rgb: 90, 108, 125;
    --bs-gray-dark: #1f2121;
    --bs-gray-dark-rgb: 31, 33, 33;
}

/* override specific component colors */
.btn-primary {
    --bs-btn-bg: #3B91CF;
    --bs-btn-border-color: #4280D8;
    --bs-btn-hover-bg: #5db6e1;
    --bs-btn-hover-border-color: #79c9ec;
}

.btn{
    --bs-btn-font-size: 1.2rem;
    --bs-btn-border-radius: 0;
}

.tooltip-custom {
    --bs-tooltip-bg: #FFFFFF;
    --bs-tooltip-color: #1f2121;
    --bs-tooltip-opacity: 1;
}
.form-select, .form-control{
    font-size: 14px;
}
.dropdown-menu{
    --bs-dropdown-font-size: 1.4rem;
    --bs-dropdown-link-active-bg: #1e1e1f;
}