.bpt-prayer-times.bpt-today-modern {
    color: #ffffff;
    width: 100%;
    margin: 0 auto;
    padding: 21px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05); */
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
}

.bpt-today-modern .bpt-card-header {
    text-align: center;
    margin-bottom: 16px;
}

.bpt-today-modern .bpt-card-title {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.449219px;
    color: #FFFFFF;
    margin-bottom: 10px !important;
}

.bpt-today-modern .bpt-card-date {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.bpt-today-modern .bpt-countdown-section {
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 10px;
    padding: 13px;
    margin-bottom: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.bpt-today-modern .bpt-next-prayer-label {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.bpt-today-modern .bpt-next-prayer-label .bpt-highlight {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #C9A961;
}

.bpt-today-modern .bpt-timer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.bpt-today-modern .bpt-timer-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 10px;
    padding: 9px;
    transition: transform 0.3s ease;
}

.bpt-today-modern .bpt-timer-box:hover {
    transform: translateY(-2px);
    border-color: rgba(195, 155, 86, 0.3);
}

.bpt-today-modern .bpt-timer-val {
    font-family: "Orbitron", Sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #C9A961;
}

.bpt-today-modern .bpt-timer-unit {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.bpt-today-modern .bpt-prayer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.bpt-today-modern .bpt-prayer-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bpt-today-modern .bpt-prayer-item.active {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #C9A961;
    box-shadow: 0px 0px 0px 1px rgba(201, 169, 97, 0.5);
    border-radius: 10px;
}

.bpt-today-modern .bpt-item-label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.150391px;
    color: rgba(255, 255, 255, 0.9);
}

.bpt-today-modern .bpt-item-time {
    font-family: "Orbitron", Sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.bpt-today-modern .active .bpt-item-label {
    color: #ffffff;
    font-weight: 500;
}

.bpt-today-modern .active .bpt-item-time {
    color: #c39b56;
}

.bpt-table {
    border-collapse: collapse;
    width: 100%;
}

.bpt-table th,
.bpt-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 480px) {
    .bpt-prayer-times.bpt-today-modern {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .bpt-today-modern .bpt-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 355px) {
    .bpt-today-modern .bpt-timer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}