.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}
html {
    scroll-behavior: smooth;
}
.table td{
    font-size: 13px;
}
.result-card {
    transition: transform 0.3s ease; /* Smooth transition for the transform */
}

.result-card:hover {
    transform: translateY(-5px);
}

.breakdown-results {
    max-height: 400px;
    overflow-y: auto;
}

.breakdown-results::-webkit-scrollbar {
    width: 6px;
}

.breakdown-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.breakdown-results::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 107, 107, 0.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.input-group-text {
    min-width: 45px;
    justify-content: center;
}

.nav-pills .nav-link.active {
    background-color: #ff6b6b;
}

.nav-pills .nav-link {
    color: #ff6b6b;
}
