/* Custom Bootstrap Tooltip Styles for EngineAuc */

/* Info tooltips */
.tooltip.tooltip-info .tooltip-inner {
    background-color: #0dcaf0 !important;
    color: #000 !important;
}

/* Info tooltip arrows for all positions */
.tooltip.tooltip-info.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #0dcaf0 !important;
}

.tooltip.tooltip-info.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #0dcaf0 !important;
}

.tooltip.tooltip-info.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #0dcaf0 !important;
}

.tooltip.tooltip-info.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #0dcaf0 !important;
}

/* Warning tooltips */
.tooltip.tooltip-warning .tooltip-inner {
    background-color: #ffc107 !important;
    color: #000 !important;
}

/* Warning tooltip arrows for all positions */
.tooltip.tooltip-warning.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #ffc107 !important;
}

.tooltip.tooltip-warning.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #ffc107 !important;
}

.tooltip.tooltip-warning.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #ffc107 !important;
}

.tooltip.tooltip-warning.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #ffc107 !important;
}

/* Success tooltips */
.tooltip.tooltip-success .tooltip-inner {
    background-color: #198754 !important;
    color: #fff !important;
}

/* Success tooltip arrows for all positions */
.tooltip.tooltip-success.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #198754 !important;
}

.tooltip.tooltip-success.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #198754 !important;
}

.tooltip.tooltip-success.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #198754 !important;
}

.tooltip.tooltip-success.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #198754 !important;
}

/* Danger tooltips */
.tooltip.tooltip-danger .tooltip-inner {
    background-color: #dc3545 !important;
    color: #fff !important;
}

/* Danger tooltip arrows for all positions */
.tooltip.tooltip-danger.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #dc3545 !important;
}

.tooltip.tooltip-danger.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #dc3545 !important;
}

.tooltip.tooltip-danger.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #dc3545 !important;
}

.tooltip.tooltip-danger.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #dc3545 !important;
}

/* Help icon styling */
.bi-question-circle {
    cursor: help;
    font-size: 0.875rem;
}
