/**
 * Theme Name: Kadence Child
 * Template:   kadence
 * ...other header fields
 */

aside {
    background: #ffe8d8;
    border-radius: 4px;
    padding: 20px;
    margin: 15px 0;
}

/* Show/Hide Button for Answers - Add to child theme style.css */



/* Hidden content styling */
.answers {
    display: none;
	background: #e4f0d2;
}

.answers.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button.show-hide-btn: {
	background: #68A800;
}

/* Icon styling for button */
.show-hide-btn::after {
    content: " ▼";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.show-hide-btn.expanded::after {
    transform: rotate(180deg);
}

/* Responsive design */
@media (max-width: 768px) {
    .show-hide-btn {
        width: 100%;
        text-align: center;
    }
    
    .answers {
        padding: 15px;
    }
}