.property-tabs-section .nav-tabs {
    border-bottom: 1px solid #E1E4ED;
}

.property-tabs-section .nav-item {
    max-width: 120px; 
}

.property-tabs-section .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    color: #6D758F;
    border: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.property-tabs-section .nav-link.active, .property-tabs-section .nav-link:hover {
    border-bottom-color: #1C79B7;
    color: #1C79B7;
    font-weight: 600 !important;
}

.tab-pane.fade {
    transition: all 0.2s ease-out;
}

.tab-pane.fade.show {
    animation: fadeIn 0.5s ease-out;
}

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

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