/* Existing styles (from previous response) ... */

/* Bottom Bar */
.bottom-bar {
    display: flex;
    justify-content: space-around;
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    position: fixed;  /* Stick to the bottom */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100; /* Ensure it's above other content */
}

.bottom-bar a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column; /* Stack icon and text */
    align-items: center;
    font-size: 0.8em; /* Adjust as needed */
}

.bottom-bar a i {
    margin-bottom: 5px; /* Space between icon and text */
}

/* Settings Page - Profile Picture */
.settings-container .profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.settings-container .profile-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover; /* Prevents distortion */
}

/*  Batch  Content section Styles*/
.batch-content{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap; /* Allow links to wrap to the next line */
    justify-content: center; /* Center the links */
}

.section-link{
    background-color: #f0f0f0;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.section-link:hover{
    background-color: #ddd;
}