#toggleButton {
    /* Basic styles for anchor element */
    display: inline-block; /* Ensure it behaves like a button */
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth rotation */
    text-decoration: none; /* Remove underline from anchor */
    
}

#toggleButton.collapsed {
    transform: rotate(0deg); /* Pointing down */
}

#toggleButton.expanded {
    transform: rotate(180deg); /* Pointing up */
}

/* Optional: Disable anchor */
#toggleButton.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none; /* Prevent interactions */
}
