/* AfriPress Pro Public Styles */

.afpr-payment-form,
.afpr-sms-subscription,
.afpr-radio-player,
.afpr-offline-reader {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.afpr-form-group {
    margin-bottom: 15px;
}

.afpr-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.afpr-form-group input,
.afpr-form-group select,
.afpr-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.afpr-submit-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.afpr-submit-btn:hover {
    background: #005a87;
}

/* Radio Player */
.afpr-radio-player {
    background: #1a1a2e;
    color: white;
}

.afpr-stations-list {
    max-height: 300px;
    overflow-y: auto;
    margin: 15px 0;
}

.afpr-station {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: background 0.3s;
}

.afpr-station:hover {
    background: #16213e;
}

.afpr-station-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.afpr-station-placeholder {
    background: #e94560;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.afpr-station-info {
    flex: 1;
}

.afpr-station-info h4 {
    margin: 0;
    font-size: 16px;
}

.afpr-station-info span {
    font-size: 12px;
    color: #aaa;
}

.afpr-play-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.afpr-player-controls {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.afpr-player-controls audio {
    width: 100%;
}

/* Data Saver Toggle */
#afpr-data-saver button {
    font-family: inherit;
    font-size: 14px;
}

/* Offline Reader */
.afpr-offline-article {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.afpr-offline-article h4 {
    margin: 0 0 10px;
}

.afpr-sync-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
}

.afpr-sync-date {
    color: #666;
    font-size: 12px;
}