.dashboard-nav {
    display: flex;
    justify-content: center;
    /* This will center the buttons horizontally in the nav */
    align-items: center;
    /* This will align the buttons vertically */
    gap: 10px;
    /* This will maintain the gap between the buttons */
    flex-grow: 1;
    /* This will allow the nav to take up the available space */
}

.rounded-dash-card {
    height: 90%;
    overflow: hidden;
    border: 0;
    display: flex;
    /* Adjusted to match typical card border-radius */
}

.nav-btn {
    padding: 10px 25px;
    width: 120px;
    height: auto;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background-color: var(--orange);
    color: white;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}


/* Add this class for when a button is active */

.nav-btn.active {
    background-color: #0191F1;
    /* Sets the active button to blue */
}

.nav-btn.disabled,
.nav-btn.disabled:focus,
.nav-btn.disabled:hover {
    pointer-events: none;
    /* This prevents the button from being clickable */
    color: #c0c0c0;
    /* Optional: makes the button appear greyed out */
    background: #f0f0f0;
    /* Optional: changes the background to indicate it's disabled */
    border-color: #c0c0c0;
    /* Optional: changes the border color to match the disabled theme */
}

.visualization-area {
    display: flex;
    justify-content: center;
    align-items: center;
    /* This will vertically center the content */
    padding: 0;
    margin: auto;
    /* Center the area horizontally */
    width: 80%;
}

#visualizationContent {
    text-align: center;
    width: 100%;
    /* Ensure the content takes full width for proper centering */
}

.swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* White border */
    border-radius: 8px;
    /* Rounded corners like a card */
    background-color: #0191F1;
    /* Orange background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Card-like shadow */
    /* Font family can be changed as desired */
    /* padding: 20px; */
    width: 100%;
    margin: 10px 0 0 0;
    min-height: 600px;
    height: auto;
    /* Space between cards */
}

.swiper-slide h2 {
    margin-bottom: 10px;
}

.swiper-slide p {
    text-align: center;
}


/* Adjustments for the Swiper carousel navigation buttons */

.swiper-button-next,
.swiper-button-prev {
    color: #FFA584;
    /* Change to your desired arrow color */
    background-color: rgba(255, 165, 132, 0.5);
    /* Optional: Add a background color with some transparency */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 25px;
    /* Increase the size of the arrow icons */
    font-weight: bold;
    /* Make the arrow icons bolder */
}


/* Custom styles for thicker arrows */

.swiper-button-next,
.swiper-button-prev {
    border: 6px solid #FFA584;
    /* Make the border thicker and change its color */
    border-radius: 50%;
    /* Optional: Adds rounded corners to the navigation buttons */
    width: 70px;
    /* Increase the width for larger buttons */
    height: 70px;
    /* Increase the height for larger buttons */
    background-size: 50%;
    /* Adjust the background size if using background images for arrows */
}



#swiper-focus-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 20px;
}

#focus-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
}

#focus-icon-container i {
    font-size: 20rem;
}

#focus-details-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
}

#focus-details-container > #heading {
    margin-bottom: 0;
    font-size: 4rem;
}

#focus-details-container > #percentage {
    color: #feffff;
    margin-top: 30px;
    font-size: 2.3rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 30px;
    width: auto;
    height: auto;
}

#focus-details-container > #status-button {
    width: 140px;
    height: 50px;
    border-radius: 30px;
    font-size: 1.5rem;
    margin-top: 30px;
}

@media screen and (min-width: 769px) {
    .hidden-on-big {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .hidden-on-small {
        display: none !important;
    }

    #swiper-focus-container {
        flex-direction: column;
    }

    #focus-icon-container i {
        font-size: 10rem;
    }
    
    #focus-details-container > #heading {
        font-size: 3rem;
    }
}
