/**
 * Custom styles for Inline Slider Arrows
 */

/* Target the pagination container to align items */
.elementor-widget-nested-carousel .swiper-pagination,
.elementor-widget-n-carousel .swiper-pagination,
.elementor-swiper-pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    position: relative !important;
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 20px !important; /* Adjust as needed */
    z-index: 99 !important; /* High Z-index */
    pointer-events: auto !important;
}

/* Common arrow styles */
.hero-slider-arrow-9308 {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* White icon */
    background: rgba(255, 255, 255, 0.2); /* Subtle background */
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent shrinking */
    order: 1; /* Default order, logic will set specific order */
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.hero-slider-arrow-9308:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
}

/* Icon size */
.hero-slider-arrow-9308 svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

/* Order specific for flexbox layout */
.hero-slider-arrow-prev-9308 {
    order: 0 !important; /* First item */
    margin-right: 5px;
}

/* Dots are usually in the middle, they naturally fall between order 0 and order 100 */
.swiper-pagination-bullet {
    order: 50 !important; /* Middle */
    margin: 0 4px !important; /* Adjust default Elementor margin */
    cursor: pointer !important;
}

.hero-slider-arrow-next-9308 {
    order: 100 !important; /* Last item */
    margin-left: 5px;
}
