/* /assets/css/video-management.css */

.cv-video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    overflow-y: auto;
}

.cv-video-modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
}

.cv-video-modal .cv-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.cv-client-search-container {
    position: relative;
    margin-bottom: 10px;
}

.cv-client-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.cv-client-search-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.cv-client-search-item:hover {
    background-color: #f5f5f5;
}

.cv-selected-clients {
    border: 1px solid #ccc;
    min-height: 100px;
    padding: 10px;
    background: #f9f9f9;
}

.cv-client-tag {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 15px;
    font-size: 12px;
}

.cv-client-tag .cv-remove-client {
    margin-left: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cv-access-level-checkbox {
    margin: 5px 0;
}