/*
=========================================
PRAYER SCHEDULE PRO
v1.0
=========================================
*/

:root{

    --primary:#0d7a43;
    --secondary:#17b35a;
    --gold:#d6a73d;

    --bg:#ffffff;
    --text:#243041;
    --muted:#6b7280;

    --border:#d8e6d9;

    --radius:18px;

}

/*================================*/

#psp-app{

    width:100%;
    font-family:"Roboto Slab",serif;

}

.psp-wrapper{

    display:flex;

    gap:22px;

    align-items:stretch;

}

/*================================
LEFT
================================*/

.psp-info{

    width:360px;

    background:#fff;

    border:1px solid var(--gold);

    border-radius:var(--radius);

    padding:30px;

    position:relative;

    overflow:hidden;

    box-shadow:

    0 15px 35px rgba(0,0,0,.08);

}

.psp-info:before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:

    linear-gradient(

        to bottom,

        #20c05d,

        #f0bf3d

    );

}

.psp-icon{

    font-size:56px;

    color:#f1b51d;

    margin-bottom:15px;

}

.psp-title{

    font-size:46px;

    font-weight:700;

    color:#243041;

    line-height:1;

}

.psp-subtitle{

    font-size:22px;

    color:#243041;

    margin-top:10px;

}

.psp-location{

    font-size:18px;

    color:#0b9f2f;

    margin-top:5px;

}

.psp-divider{

    height:1px;

    background:#dcdcdc;

    margin:30px 0;

}

.psp-current-title{

    font-size:17px;

    color:#888;

}

.psp-current{

    font-size:54px;

    font-weight:bold;

    color:#10883b;

}

.psp-current-name{

    font-size:28px;

    color:#243041;

    font-weight:bold;

}

.psp-countdown{

    margin-top:18px;

    color:#888;

    font-size:17px;

}

/*================================
RIGHT
================================*/

.psp-grid{

    flex:1;

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:18px;

}

.psp-card{

    background:#fff;

    border:1px solid var(--gold);

    border-radius:12px;

    padding:22px 15px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

}

.psp-card:before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:

    linear-gradient(

        to bottom,

        #25c65c,

        #f0bf3d

    );

}

.psp-card:hover{

    transform:translateY(-8px);

    box-shadow:

    0 20px 35px rgba(0,0,0,.12);

}

.psp-card.active{

    background:#ecfff1;

    border-color:#19b65c;

    box-shadow:

    0 0 25px rgba(25,182,92,.25);

}

.psp-card.active::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    animation:pspGlow 2s infinite;

}

.psp-card-icon{

    font-size:34px;

    color:#f0bf3d;

    margin-bottom:15px;

}

.psp-time{

    font-size:34px;

    font-weight:bold;

    color:#243041;

    margin-bottom:8px;

}

.psp-name{

    color:#099d39;

    font-size:22px;

}

/*===============================*/

@keyframes pspGlow{

0%{

box-shadow:0 0 0 rgba(20,180,60,0);

}

50%{

box-shadow:0 0 30px rgba(20,180,60,.35);

}

100%{

box-shadow:0 0 0 rgba(20,180,60,0);

}

}

/*================================*/

@media(max-width:992px){

.psp-wrapper{

flex-direction:column;

}

.psp-info{

width:100%;

}

.psp-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:640px){

.psp-grid{

grid-template-columns:repeat(2,1fr);

}

.psp-title{

font-size:34px;

}

.psp-current{

font-size:42px;

}

}