/* Основная обертка для списка опросников */
/* .my-quiz-builder-quiz-list-wrapper {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fcfcfc;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
} */

.my-quiz-builder-quiz-list-wrapper h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.my-quiz-builder-quiz-list-wrapper h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #33b9cb;
    border-radius: 2px;
}

/* Сетка для элементов списка */
.quiz-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Отдельный элемент списка опросников */
.quiz-list-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Распределяем содержимое */
}

.quiz-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.quiz-list-item h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.quiz-list-item h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.quiz-list-item h3 a:hover {
    color: #0073aa;
}

.quiz-list-item .quiz-excerpt {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1; /* Занимает доступное пространство */
}

.quiz-list-item .button-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #33b9cb;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.quiz-list-item .button-primary:hover {
    background-color: #005177;
}

/* Сообщение, если опросники не найдены */
.no-quizzes-found {
    text-align: center;
    font-size: 1.2em;
    color: #888;
    padding: 30px;
    border: 1px dashed #ddd;
    border-radius: 8px;
    background-color: #f5f5f5;
    margin-top: 30px;
}


/* Стили для пагинации */
.my-quiz-builder-quiz-list-wrapper .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.page-numbers { /* Общая обертка для каждого элемента списка пагинации */
    display: inline-block;
    margin: 0 5px;
    font-size: 1.1em;
}

.page-numbers .page-numbers { /* Стилизация отдельных ссылок пагинации */
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #0073aa;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.page-numbers .page-numbers:hover {
    background-color: #f0f0f0;
    border-color: #aaa;
}

.page-numbers .current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
    font-weight: bold;
    cursor: default;
}

.page-numbers .dots {
    border: none;
    background: none;
    color: #777;
    cursor: default;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    .my-quiz-builder-quiz-list-wrapper {
        padding: 15px;
        margin: 15px 10px;
    }

    .my-quiz-builder-quiz-list-wrapper h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .quiz-list-grid {
        grid-template-columns: 1fr; /* Одна колонка на маленьких экранах */
        gap: 20px;
    }

    .quiz-list-item h3 {
        font-size: 1.5em;
    }

    .quiz-list-item .quiz-excerpt {
        font-size: 0.95em;
    }

    .page-numbers .page-numbers {
        padding: 6px 10px;
        font-size: 0.95em;
    }
}

/* Основная обертка для списка опросников */
.my-quiz-builder-quiz-list-wrapper {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
}
/* ... и так далее, весь остальной CSS код ... */

.create_curvey{
    font-family: "Jost", sans-serif !important;
}