:root {
    --stp-primary-color: #7f3b52;
    --stp-text-color: #fff;
}

.stp-scroll-buttons-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    border-right: 4px solid var(--stp-primary-color);
    direction: rtl;
    text-align: center;
}

.stp-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.stp-scroll-button {
    background-color: var(--stp-primary-color);
    color: var(--stp-text-color);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 120px;
}

.stp-scroll-button:hover {
    background-color: #6a3145;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stp-point-marker {
    visibility: hidden;
    position: absolute;
}

/* استایل آیکون بازگشت به فهرست - مینی‌مال */
.stp-back-to-top {
    text-align: right;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.stp-back-button {
    background: transparent;
    border: none;
    color: #7f3b52;
    padding: 6px 10px; /* بزرگ‌تر شد */
    cursor: pointer;
    font-size: 13px; /* بزرگ‌تر شد */
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px; /* بزرگ‌تر شد */
    text-decoration: none;
    opacity: 0.8;
}

.stp-back-button:hover {
    opacity: 1;
    color: #6a3145;
}

.stp-back-icon {
    font-size: 14px; /* بزرگ‌تر شد */
}

.stp-point-title {
    font-weight: 400;
    font-size: 12px; /* بزرگ‌تر شد */
}

/* استایل‌های واکنش‌گرا */
@media (max-width: 768px) {
    .stp-buttons-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .stp-scroll-button {
        width: 100%;
        max-width: 200px;
    }
    
    .stp-back-button {
        font-size: 12px; /* بزرگ‌تر شد */
        padding: 5px 8px; /* بزرگ‌تر شد */
    }
}