/* We'll use a style tag to define our custom font family */
body {
    font-family: 'EB Garamond', serif;
}
textarea {
    min-height: 120px;
}
/* Styles for the toast notification */
#toast-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 100;
}
.sortable-ghost {
    opacity: 0.4;
    background: #4a5568;
}
.sortable-chosen {
    cursor: grabbing;
}
.item-form {
    cursor: grab;
}
/* Custom Carousel Styles */
.carousel-slide {
    display: none;
    transition: opacity 0.5s ease-in-out;
}
.carousel-slide.active {
    display: block;
}
.carousel-controls button {
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
#prev-slide {
    left: -50px;
}
#next-slide {
    right: -50px;
}
