.trends-list::-webkit-scrollbar,
.prayer-times::-webkit-scrollbar {
    width: 8px;
}

.trends-list::-webkit-scrollbar-track,
.prayer-times::-webkit-scrollbar-track {
    background: rgba(255, 165, 0, 0.1);
    border-radius: 10px;
}

.trends-list::-webkit-scrollbar-thumb,
.prayer-times::-webkit-scrollbar-thumb {
    background-color: #ff7f50; /* لون برتقالي */
    border-radius: 10px;
    border: 2px solid rgba(255, 165, 0, 0.2);
}

.trends-list,
.prayer-times {
    scrollbar-color: #ff7f50 rgba(255,165,0,0.1);
    scrollbar-width: thin;
}

.tilesblata {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    max-width: 1200px;
    margin: auto;
}

.blatabox {
    position: relative;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blatabox:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.blatabg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.blatacontent {
    position: relative;
    z-index: 1;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blatatitle {
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.blatabody {
    font-size: 14px;
    line-height: 1.5;
}

.trends-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 220px;
    overflow-y: auto;
}

.trends-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,165,0,0.2);
    transition: background 0.2s;
}

.trends-list li:hover {
    background: rgba(255,165,0,0.2);
}

.trends-list a {
    text-decoration: none;
    color: #fff !important;
    font-weight: 500;
}

.trend-highlight {
    font-weight: bold;
    font-size: 18px;
    color: #ffd700;
}

.weather-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.weather-temp {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.weather-desc {
    font-size: 14px;
    color: #fff;
}

.weather-details {
    margin-top: 10px;
    font-size: 14px;
    color: #ffdab9;
}

.prayer-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 8px;
}

.prayer-time {
    background-color: rgba(255,165,0,0.2);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    font-weight: 500;
    color: #fff;
    transition: transform 0.2s, background 0.2s;
}

.prayer-time:hover {
    background-color: rgba(255,165,0,0.4);
    transform: translateY(-2px);
}

.tile-trends {
    flex: 2;
    min-width: 330px;
}

.tile-weather,
.tile-prayer {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 900px) {
    .tilesblata {
        flex-direction: column;
    }

    .blatabox {
        width: 100%;
        height: auto;
    }
}