.main-slider-button {
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    min-width: 350px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.main-slider-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.main-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3182ce;
    flex-shrink: 0;
}

.main-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.main-button-text {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    letter-spacing: -0.5px;
}

.arrow {
    color: #a0aec0;
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.2s ease;
    margin-left: auto;
}

.main-slider-button:hover .arrow {
    transform: translateX(3px);
    color: #718096;
}

/* Buton container için stil */
.container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* İkon container stilleri */
.icon-container {
    width: 44px;
    height: 44px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-text {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    letter-spacing: -0.5px;
    flex: 1;
}