/* Desktop Navigation Styles */
.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    padding: 0 1rem;
    width: 100%;
    max-width: 300px;
    position: relative;
    height: 44px;
    box-sizing: border-box;
}

/* Ticket Price - Enhanced Styling */
.ticket-price {
    margin: 0.75rem 0;
    font-size: 0.95rem;
    background-color: #f0fdf4;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: block !important;
    border: 2px solid #86efac;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.ticket-price:hover {
    background-color: #dcfce7;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ticket-price i.fas {
    margin-right: 6px;
    color: #16a34a;
}

.ticket-price .text-green-700 {
    color: #15803d;
    font-weight: 600;
}

.ticket-price .font-bold {
    font-weight: 700;
}

/* For free events */
.ticket-price .text-gray-600 {
    color: #4b5563;
}

/* Ensure the price is visible on all screen sizes */
@media (max-width: 768px) {
    .ticket-price {
        margin: 0.5rem 0;
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
}

.slider-nav {
    width: 44px;
    height: 44px;
    min-height: 44px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #4a5568;
    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 10;
    line-height: 1;
    transform: scale(1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav:not([disabled]):hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.slider-nav:not([disabled]):active {
    transform: scale(1);
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #e2e8f0;
    color: #a0aec0;
    transform: none !important;
}

.slider-nav i {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    position: relative;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #d1d5db;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 4px;
}

.slider-dot.active {
    background-color: var(--primary-color);
    width: 20px;
}

.slider-dot:hover {
    background-color: var(--primary-light);
}

/* Slider container */
.event-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
