#card-viewer {
    font-family: "Poppins", sans-serif;
    max-width: 700px;
    margin: 20px auto;
    text-align: left;
}

.loading-text {
    text-align: center;
    font-size: 18px;
    color: #555;
}

.card-item {
    background: #fffbea;
    border: 1px solid #f1e4a3;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.question {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.answer {
    font-size: 15px;
    color: #1a8b1a;
    margin-top: 8px;
    line-height: 1.4em;
}

button.show-answer {
    background: #ffda6b;
    color: #333;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

button.show-answer:hover {
    background: #ffd44c;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination button {
    background: #f8c12d;
    color: #000;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.pagination button:hover {
    background: #e6b021;
}
