.grouplistsec {
    background-color: #f8f9fa;
    padding: 0px 0;
    border-top: 2px solid hsl(74, 100%, 50%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.grouplist {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.grouplist li {
    margin: 0 20px;
    background-color: #1C8205;
    border-radius: 5px;
    padding: 10px 25px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.grouplist li:hover {
    background-color: #fcc729;
}

.grouplist a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.tab-content {
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #f0f8ff);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


 /* Mobile View Styles */
 @media (max-width: 768px) {
    .grouplist {
        flex-direction: column;
        align-items: center;
    }

    .grouplist li {
        margin: 10px 0;
        width: 80%;
        padding: 15px;
    }

    .tab-content {
        padding: 15px;

    }

    
}

