.profile-container {
    display: flex;
    max-width: 1200px;
    margin: 2px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.std-img-circle {
    width: 120px;
    overflow: hidden;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.std-img-circle img {
    position: relative;
    width: 100%;
    height: auto;
}

.sidebar {
    width: 250px;
    padding: 20px;
    border-right: 1px solid #ddd;
    text-align: center;
}

.profile-photo {
    width: 90px;
    object-fit: cover;
}

.student-name {
    font-size: 18px;
    margin: 5px 0;
}

.program-title {
    font-size: 14px;
    color: #ddd;
}

.status {
    margin: 20px 0;
    text-align: left;
}

.status .active {
    color: green;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #218838;
}

.main-content {
    flex: 1;
    padding: 5px;
}

.tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
}

.tab-button.active {
    border-bottom: 3px solid #28a745;
    color: #28a745;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.info-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-group p {
    width: 48%;
    margin: 5px 0;
}

.experience, .education {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience li, .education li {
    margin: 10px 0;
    font-size: 16px;
}

.experience li span, .education li span {
    display: block;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .main-content {
        padding: 10px;
    }

    .info-group p {
        width: 100%;
    }
}


body {
    font-family: sans-serif;
    background: #f6f9fa;
}

h1 {
    color: #ccc;
    text-align: center;
}

a {
    color: #ccc;
    text-decoration: none;
    outline: none;
}

/*Fun begins*/
.tab_container {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
    position: relative;
}

.data-label {
    white-space: nowrap;
    color: black;
    font-weight: bold;
    font-size: 13px;
}

.data-content {
    background-color: white;
    min-width: 150px;
    color: black !important;
    font-size: 12px;
}


 