.hydrax-player-section {
    margin: 30px 0;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
}

.hydrax-title {
    color: #1db954;
    margin-bottom: 15px;
    font-size: 18px;
}

.hydrax-player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.hydrax-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.hydrax-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hydrax-external-link {
    display: inline-block;
    padding: 8px 15px;
    background: #1db954;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.hydrax-external-link:hover {
    background: #1ed760;
}

.hydrax-reassign-btn,
.hydrax-manual-assign-btn {
    padding: 8px 15px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.hydrax-reassign-btn:hover,
.hydrax-manual-assign-btn:hover {
    background: #555;
}

/* Modal styles */
.hydrax-reassign-modal,
.hydrax-manual-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hydrax-modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #333;
}

.hydrax-modal-content h4 {
    color: #1db954;
    margin-top: 0;
    margin-bottom: 15px;
}

.hydrax-search-input,
.hydrax-slug-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #333;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}

.hydrax-search-btn,
.hydrax-assign-btn {
    padding: 10px 20px;
    background: #1db954;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.hydrax-modal-close {
    padding: 10px 20px;
    background: #666;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.hydrax-search-results {
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
}

.hydrax-search-results .video-item {
    padding: 10px;
    border-bottom: 1px solid #333;
    cursor: pointer;
}

.hydrax-search-results .video-item:hover {
    background: #333;
}

.hydrax-search-results .video-item:last-child {
    border-bottom: none;
}

.hydrax-no-video {
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.hydrax-no-video h4 {
    color: #ff4444;
    margin-top: 0;
}