p {
    color: #FFFFFF;
}

.search-input {
    margin: 56px !important;
}

.header-container {
    display: flex; 
    gap: 200px;
}

#video-date {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

#video-title {
    font-weight: 600;
    margin-bottom: 0px;
}

#video-status {
    color: #e89802;
}

#review-status {
    color: red;
}

#reviewed {
    color: #16b431;
}

#video-status-change {
    color: #16b431;
}

.status-icon {
    font-size: 40px;
    display: flex;
}

.info-icon {
    font-size: 16px;
    color: lightgrey;
    padding-top: 3px;
    padding-left: 8px;
}

#username {
    margin-bottom: 0px;
}

.instructor-name {
    color: grey;
}

#video-tag {
    margin-bottom: 0px;
    font-size: 14px;
}

#instructor-tag {
    font-size: 14px;
}

.instructor-comment {
    max-width: 350px !important;
    color: rgb(209, 209, 209);
    font-weight: 100;
    font-size: 14px;
}

#video-container {
    border-radius: 16px;
    padding: 24px;
    background-color: rgb(32, 29, 29);
}

.show-review-btn {
    background-color: rgb(203, 27, 27);
    color: rgb(237, 234, 234);
    border-radius: 4px;
    font-size: 14px;
    padding: 4px;
}

/* Instructor Feedback Modal styles */
.instructor-feedback-modal {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
}

.instructor-feedback-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    height: 100%;
    overflow-y: auto;
    padding-top: 120px;
}

.instructor-feedback-modal-close {
    color: #FFFFFF;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#pipeSafariNotification {
    background: rgb(116, 184, 207) !important; 
}

@media only screen and (max-width: 600px) {
    .header-container {
        gap: 50px !important;
    }

    #video-date {
        width: 200px !important;
    }

    .video-node {
        width: 300px !important;
    } 
}




