.ppt-wrapper {
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
}

.ppt-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #eee;
}

/* Countdown Section */
.ppt-countdown-section {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
}

.ppt-next-event-label {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.ppt-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-block {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 70px;
}

.timer-block span {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.timer-block small {
    font-size: 11px;
    display: block;
    margin-top: 2px;
}

.timer-sep {
    font-size: 24px;
    font-weight: bold;
}

/* Main Content */
.ppt-main-content {
    padding: 25px;
}

.ppt-header-info {
    text-align: center;
    margin-bottom: 25px;
}

.ppt-header-info h3 {
    margin: 0;
    font-size: 20px;
    color: #27ae60;
}

.ppt-date-loc {
    margin: 5px 0 0;
    font-size: 13px;
    color: #7f8c8d;
}

/* Prayer Times Table Grid */
.ppt-times-grid {
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.ppt-time-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.3s;
}

.ppt-time-row:last-child {
    border-bottom: none;
}

.ppt-time-row:hover {
    background: #f9f9f9;
}

.ppt-time-row span {
    font-weight: 500;
}

.ppt-time-row strong {
    color: #27ae60;
}

/* Ramadan Special */
.ppt-ramadan-special {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ppt-special-box {
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.ppt-special-box.sehri {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
}

.ppt-special-box.iftar {
    background: #ffebee;
    border-left: 5px solid #e91e63;
}

.ppt-special-box .label {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.ppt-special-box .time {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

/* Share Footer */
.ppt-share-footer {
    padding: 15px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ppt-share-count {
    font-size: 13px;
    color: #7f8c8d;
}

.ppt-btn-share {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s;
}

.ppt-btn-share:hover {
    background: #219150;
}

.ppt-btn-share .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

@media (max-width: 480px) {
    .ppt-ramadan-special { grid-template-columns: 1fr; }
    .ppt-share-footer { flex-direction: column; gap: 10px; text-align: center; }
}
