


.tab-container {
    display: flex;
    flex-wrap: wrap;
    /* Other styles for your tabs container */
}

.tab-container::after {
    content: "";
    flex-basis: 100%;
    height: 0;
    margin: 0 auto;
    border-top: 5px solid #000; /* Change color as needed */
    width: 90%; /* Adjust width as needed */
}

.nav-pills-mine {
    height: 80px;
}

.floating_btn {
    font-size: xxx-large;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
    background-color: #2b90d9;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}