﻿.nav-item a {
    font-size: 1.25rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.nav-link:hover {
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.4), rgba(0, 123, 255, 0.6));
    color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .card .btn {
        padding: 0.8rem 1.5rem;
        border-radius: 30px;
        font-size: 1.1rem;
    }

.tab-content {
    padding-top: 2rem;
}

.tab-pane {
    display: none;
    transition: opacity 0.3s ease-in-out;
}

    .tab-pane.fade {
        opacity: 0;
    }

    .tab-pane.show {
        display: block;
        opacity: 1;
    }

.hover-scale:hover {
    transform: scale(1.05);
}

.transition-all {
    transition: all 0.3s ease;
}

.rounded-xl {
    border-radius: 1rem;
}

.divider {
    width: 2px;
    background-color: #ddd;
    height: 20px;
}
.tooltip-inner {
    background-color: transparent;
    text-align: left;
}
.custom-tooltip {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #212529;
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: left;
    line-height: 1.6;
}

    .custom-tooltip .tooltip-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #007bff;
    }

    .custom-tooltip .tooltip-text {
        margin: 4px 0;
        color: #495057;
    }

.tooltip-anchor {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}

    .tooltip-anchor:hover {
        color: #0056b3;
        text-decoration: underline;
    }
