/* Company profile page specific styles */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #040712;
}

/* Event detail panel animation */
#event-detail {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

#event-detail.open {
    max-height: 40rem;
    opacity: 1;
}
