.student-success-wrap-944b8849 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #e6f2fd;
    padding: 20px;
    border-radius: 8px;
}
.ss-video-column {
    flex: 1 1 50%;
    min-width: 300px;
}
.ss-nav-column {
    flex: 1 1 40%;
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
}
.ss-video-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
}
.ss-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ss-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ss-nav-item {
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ss-nav-item:hover {
    background-color: rgba(255,255,255,0.5);
}
.ss-nav-item.active {
    background-color: #0b4c9f;
    color: #fff;
}
.ss-nav-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #c92476; /* Default pinkish color as per ref */
}
.ss-nav-item.active .ss-nav-title {
    color: #fff;
}
.ss-nav-subtitle {
    font-size: 14px;
    color: #333;
}
.ss-nav-item.active .ss-nav-subtitle {
    color: #fff;
}