/**
 * Jumuah Prayer Times block styles
 */

.wp-block-prayer-times-jumuah-prayer-times {
    --muslprti-color-border: rgb(127 127 127 / 0.45);
    --muslprti-color-surface: rgb(127 127 127 / 0.14);
    color: inherit;
    margin: 1em auto;
    max-width: 600px;
}

/* Horizontal layout: table similar to Daily Prayer Times' Jumuah row */
.jumuah-times-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.jumuah-times-table td {
    text-align: center;
    padding: 10px;
    width: 33.33%;
}

.jumuah-times-table .jumuah-time-value {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
}

.jumuah-times-table .jumuah-label {
    display: block;
    font-size: 0.9em;
    margin-top: 5px;
    color: currentColor;
    opacity: 0.65;
}

/* Vertical layout: plain list, no bullet points, one time under another */
.jumuah-times-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jumuah-times-list-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.5em 0;
    border-bottom: 1px solid var(--muslprti-color-border);
}

.jumuah-times-list-item:last-child {
    border-bottom: 0;
}

.jumuah-times-list-item .jumuah-label {
    font-weight: bold;
}

.jumuah-times-list-item .jumuah-time-value {
    font-weight: bold;
}

/* Responsive styles for small screens */
@media (max-width: 600px) {
    .wp-block-prayer-times-jumuah-prayer-times {
        font-size: 0.9em;
    }

    .jumuah-times-table .jumuah-time-value {
        font-size: 1em;
    }

    .jumuah-times-table .jumuah-label {
        font-size: 0.8em;
    }
}
