.chat-course,
.course-requests {
    font-size: smaller;
    color: grey;
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

dialog::-webkit-scrollbar {
    width: 0px;
    /* Remove scrollbar width */
}

.name {
    color: black;
}

.requests {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addVd,
.addAss {
    background-color: rgba(124, 213, 148, 0.285);
    border-radius: 10px;
    padding: 10px;
    width: fit-content;
    color: darkolivegreen;
    border: 1px solid darkolivegreen;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: scale 0.25s ease;

}

.delete-assignment-btn,
.delete-videos-btn {
    background-color: #FEE2E2;
    border-radius: 10px;
    border: 1px solid #931414d1;
    padding: 10px;
    width: fit-content;
    color: #931414d1;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: scale 0.25s ease;
    display: flex;
    gap: 3px;
}

.delete-assignment-btn:hover,
.delete-assignment-btn:active .delete-videos-btn:hover,
.delete-videos-btn:active {
    color: white;
    background-color: #df2a2ab8;
}

.delete-assignment-btn:active .delete-videos-btn:active {
    transform: scale(1.040);
}

.edit-buttons {
    display: flex;
    gap: 10px;

}

.addAss:hover,
.addVd:hover {
    transform: scale(1.040);
}

.addAss svg {
    height: 10px;
    width: 12px;
}

.coursename {
    justify-content: space-between;
}

.coursename svg {
    cursor: pointer;
    visibility: hidden;
    transition: visibility o.5s linear;
}

.coursename svg:hover {
    transform: scale(1.090);
}

.coursename:hover svg {
    visibility: visible;
}

.one {
    display: flex;
}


.two {
    display: flex;
    align-items: center;
}

.video {
    justify-content: space-between;
    gap: 5px;
}

/* NEW: Checkbox visibility */
.video-checkbox {
    cursor: pointer;
}


.add-course-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-right: 15px;
    animation: fadeIn 0.5s ease;
}

.add-new-course-btn {

    background: linear-gradient(-120deg, rgba(143, 201, 251, 0.301), 20%, #1976d2);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.add-new-course-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
/* Request status colors */
.Rcourse.pending { color: #856404; }
.Rcourse.accepted { color: #155724; }
.Rcourse.declined { color: #721c24; }

/* Status message styles */
.not-teacher, .no-requests, .error-message {
    text-align: center;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
}

.not-teacher {
    background-color: #e2e3e5;
    color: #383d41;
}

.no-requests {
    background-color: #f8f9fa;
    color: #6c757d;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
}

.become-teacher-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.subtext {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}
