/* 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: var(--e-global-color-914cc55);
    transition: background-color 0.5s, color 0.5s;
    cursor: pointer;
    color: #fff;
    border: none;
    border-radius: 0;
    position: relative;

    & svg {
        flex-shrink: 0;
    }
}

/* Previous button specific styles */
.prev-btn {
    &::after {
        content: " ";
        position: absolute;
        display: block;
        height: 10px;
        width: 10px;
        top: -0.5px;
        left: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0L0 9V0H9Z' fill='white'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
    }
}

/* Next button specific styles */
.next-btn {
    &::after {
        content: " ";
        position: absolute;
        display: block;
        height: 10px;
        width: 10px;
        top: -0.5px;
        right: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0L0 9V0H9Z' fill='white'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        transform: rotate(90deg);
    }
}

/* Hover effects */
.slider-button:hover {
    background-color: var(--e-global-color-primary);
    color: white;
}

/* SVG icon styles */
.slider-icon {
    width: 24px;
    /* size-6 = 1.5rem = 24px */
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}