.prayer-times-inner {
/*
    padding: 15px;
    background: var(--tableBg);
*/
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.prayer-header {
    margin-bottom: 16px;
    position: relative;
}

.prayer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #e7e6f7;
}

.prayer-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.prayer-title-wrapper {
    position: relative;
    display: inline-block;
}

.prayer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    padding-bottom: 10px;
}

.prayer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.prayer-title i {
    margin-left: 10px;
}

.prayer-header .btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.prayer-header .btn:hover {
    background: var(--accent-color);
    transform: translateX(-5px);
}
 .header-line {
     height: 2px;
     background: rgba(255, 255, 255, 0.3);
     border-radius: 1px;
 }

.city-selector {
    display: flex;
    /* flex-direction: column; */
    margin-bottom: 1.5rem;
     padding: 5px; 
    /* background: #f8f9fa; */
/*    border-radius: 10px;*/
    /* border: 1px solid #e9ecef; */
    align-items: center;
    gap: 0.8rem;
    justify-content: space-around;
/*    background: var(--tableBg);*/
}

.selector-label {
    font-weight: 600;
    font-size: 0.9rem;
    width: auto;
}

.city-select-country,
.city-select-city {
    width: 70%;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}
select {
    background-color: var(--tableBg) !important;
}
.city-select-country:focus,
.city-select-city:focus {
    outline: none;
    /*    border-color: #1e22b4;*/
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

 .city-select-city:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .hijri-date {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     font-size: 12px;
     opacity: 0.9;
 }

 .prayer-times-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
/*     gap: 12px;*/
     margin-bottom: 10px;
     padding: 0 15px;
 }

 .prayer-time-item {
     padding: 6px 10px;
     text-align: center;
     transition: all 0.3s ease;
     cursor: default;
 }

 .prayer-time-item:hover {
     background: rgba(255, 255, 255, 0.25);
     transform: translateY(-3px);
 }

.prayer-time-item.current-prayer .prayer-time {
    background: #14ad80;
}
 .prayer-name {
     opacity: 0.85;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     font-weight: 500;
 }

.prayer-time {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: #004ed3;
}
.prayer-loading {
    text-align: center;
    padding: 20px;
/*    color: #0af4e0;*/
}
.prayer-footer {
    background: var(--tableBg);
    padding: 10px;
}

.prayer-loading i {
    font-size: 24px;
}

 @media (max-width: 768px) {
     .prayer-times-list {
         grid-template-columns: repeat(3, 1fr);
     }

     .prayer-title {
         font-size: 20px;
     }
 }

 @media (max-width: 480px) {
     .prayer-times-list {
         grid-template-columns: repeat(2, 1fr);
     }

     .prayer-times-widget {
         padding: 15px;
     }

     .prayer-time-item.current-prayer {
         transform: scale(1.02);
     }
 }
