/* Style the sub-menu */
.sub-menu {
    display: none; /* Initially hide the sub-menu */
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    /* Add width and adjust other styles as needed */
    width: 200px; /* Set the desired width for your sub-menu */
    margin-top: 0px;
}

/* Show the sub-menu when hovering over the parent link */
.menu li:hover .sub-menu {
    display: block;
}

.activelink{
    border-top: 2px solid #3D3C3E;
}


/* Stlye for sg page panel */

 /* Basic styling for the tabs */
 .tab-container {
    display: flex;
}
.tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #ccc;
    text-align: center;
}
.content {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
}
.active-tab {
    background-color: #f0f0f0;
}

/* Stlye for sg page image */

.content2 {
    display: flex;
}
.text {
    flex: 2; /* Adjust the ratio as needed */
}
.image {
    flex: 1; /* Adjust the ratio as needed */
    padding-left: 10px; /* Add some spacing */
}
