/* Popup overlay */
.rwp-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.rwp-content {
    background: #fff;
    padding: 20px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
}

/* Close button */
.rwp-close {
    position: absolute;
    top: 10px; right: 10px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

/* Item rows */
.rwp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.rwp-item:last-child {
    border-bottom: none;
}

/* Logo */
.rwp-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
}

/* Info section */
.rwp-info {
    flex: 1;
    margin-left: 10px;
}

.rwp-title {
    margin: 0;
    font-weight: bold;
}

.rwp-subtitle {
    font-size: 12px;
    color: #777;
}

/* Play button */
.rwp-play {
    font-size: 20px;
    text-decoration: none;
    color: black;
}
