/* Container styles */
.slider-container {
    display: flex;
}

/* Common button styles */
.slider-button {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: background-color 0.5s, color 0.5s;
    cursor: pointer;
    color: #000;
    border: none;
    border-radius: 0 !important;
    
    
    
    

    & svg {
        flex-shrink: 0;
    }
}

/* Previous button specific styles */
.prev-btn {
    border-top-left-radius: 6px !important;
    /* rounded-tl-md */
    border-bottom-left-radius: 6px !important;
    /* rounded-bl-md */
}

/* Next button specific styles */
.next-btn {
    border-top-right-radius: 6px !important;
    /* rounded-tr-md */
    border-bottom-right-radius: 6px !important;
    /* rounded-br-md */
    border-left: 1px solid #60a5fa;
    /* border-l border-primary-400 (assuming primary-400 is blue-400) */
}

/* Hover effects */
.slider-button:hover {
        background-color: white !important;

    color: var(--e-global-color-primary) !important;
}

/* SVG icon styles */
.slider-icon {
    width: 24px;
    /* size-6 = 1.5rem = 24px */
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}