.table-equal {
    table-layout: fixed;
    width: 100%;
    /* or any fixed width you prefer */
    border-collapse: collapse;
}

.table-equal th,
.table-equal td {
    width: 100px;
    /* Set equal width */
    height: 100px;
    /* Set equal height */
    text-align: center;
    border: 1px solid rgb(147, 147, 147);
    vertical-align: middle;
}

.table-equal tr {
    height: 100px;
    /* Ensures that each row maintains the same height */
}

.custom-section-header {
    scroll-margin-top: 60px;
}

.custom-monospace {
    font-family: "Consolas", "Monaco", "Lucida Console", "Courier New", monospace;
    line-height: 30px;
    font-weight: 700;
    font-size: 12px;
}

.custom-list {
    padding-left: 2rem;
    /* Optional: Adjust this if you need more space */
    list-style-position: outside;
    /* Ensures bullet points stay outside the text */
}

:root,
[data-bs-theme="light"] {
    /* Default (light theme) colors */
    --custom-blue: #007bff;
    /* Primary Blue */
    --custom-red: #dc3545;
    /* Primary Red */
    --custom-green: #28a745;
    /* Primary Green */
}

[data-bs-theme="dark"] {
    /* Adjusted colors for dark theme */
    --custom-blue: #4a90e2;
    /* Lighter Blue */
    --custom-red: #ff6f61;
    /* Lighter Red */
    --custom-green: #4caf50;
    /* Lighter Green */
}

.text-custom-blue {
    color: var(--custom-blue);
}

.text-custom-red {
    color: var(--custom-red);
}

.text-custom-green {
    color: var(--custom-green);
}

.tooltip-inner {
    text-align: left;
    max-width: 300px;
}

.chart-tooltip .key {
    display: inline-block;
    min-width: 80px;
    /* font-weight: bold; */
    text-align: left;
    padding-right: 10px;
}

.chart-tooltip .value {
    display: inline-block;
    text-align: left;
}

.chart-tooltip-item {
    display: block;
    padding: 5px 0;
}

.navbar .nav-link:hover {
font-weight: bold;
}

.table-hover tbody tr:hover td {
    background: #E6F2FF;
}

/* Dark mode styles */
[data-bs-theme="dark"] .table-hover tbody tr:hover td {
    background: #2D3E50; /* Example darker blue for dark mode */
}
