.addLocalVideoModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;  /* Constrain the height of the modal */
    overflow-y: auto;  /* Enable vertical scrolling */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-button {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.video-list {
    margin-top: 20px;
}

.video-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.video-item:hover {
    background: #f5f5f5;
}

.video-preview {
    width: 150px;
    height: auto;
    margin-right: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.video-info {
    flex: 1;
}

.video-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.video-date {
    color: #666;
    font-size: 14px;
}
