/* === Umumiy tanlovlar === */
body {
    background-color: #FDE9C5; /* To‘g‘ri fon rangi */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* === LOGO === */
.logo-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.logo {
    width: 166px;
    height: 37px;
}

/* === FILTER PANEL === */
.filter-container {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

.filter-scroll {
    display: flex;
    gap: 4px;
    padding-bottom: 10px;
}

.filter-button {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    height: 28px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    color: #737070;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.filter-button.active {
    background: rgba(175, 134, 75, 0.2);
    color: #282828;
}

/* Kategoriya rangi uchun kvadrat */
.category-color {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    margin-right: 4px;
}

/* === OYATLAR RO‘YXATI === */
.verse-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: auto;
}

/* === KARTA (CATEGORY-RANGI) === */
.verse-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90px;
    border-radius: 12px;
    padding: 10px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* Kartalar kategoriyaga mos rangda chiqishi */
.verse-card.hidoyat { background-color: #B0E5AD; color: #206612; }
.verse-card.sabr { background-color: #F9E1A1; color: #83612A; }
.verse-card.rahmat { background-color: #B1DCF6; color: #0E5777; }
.verse-card.axloq { background-color: #F9D0D0; color: #9F5151; }
.verse-card.mo\'jiza { background-color: #FEA3A3; color: #813939; }
.verse-card.qissa { background-color: #FFFFFF; color: #666666; }

/* Sura nomi */
.verse-header {
    font-size: 18px;
    font-weight: bold;
}

/* Oyat tarjimasi */
.verse-text {
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.6;
}


/* PAGINATSIYA DIZAYNI */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.page-button {
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    background: rgba(175, 134, 75, 0.2);
    color: #282828;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease-in-out;
}

.page-button:hover {
    background: rgba(175, 134, 75, 0.5);
}

.current-page {
    font-size: 14px;
    font-weight: bold;
    margin: 0 10px;
}

