/* Soft, botanical theme decorative elements */
.leaf-pattern {
    background-color: #FCFAF6;
    background-image: radial-gradient(#82ab8e 0.5px, transparent 0.5px), radial-gradient(#82ab8e 0.5px, #FCFAF6 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.03;
}

/* Custom scrollbar styling to match the theme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FCFAF6;
}
::-webkit-scrollbar-thumb {
    background: #abc9b3;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #82ab8e;
}

/* Smooth reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}