/* Clean YouTube Player v2.0 Styles */

/* Main container with shadow and rounded corners */
.cyp-container {
    max-width: 100%; /* Ensure it's responsive */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    margin: 20px 0;
}

/* Responsive wrapper for the video iframe */
.cyp-player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.cyp-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Custom controls bar */
.cyp-controls {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
}

.cyp-controls button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0 5px;
    background-color: #f7f7f7;
    transition: all 0.2s ease;
}

.cyp-controls button:hover {
    background-color: #e9e9e9;
    border-color: #999;
}