/* تنسيق زرار المتابعة كزائر في صفحة الدخول */
.guest-checkout-button, [data-testid="guest-checkout-button"] {
    background-color: #28a745 !important; /* أخضر مريح للعين وبيوحي بالثقة */
    color: #ffffff !important;
    font-weight: bold !important;
    font-size: 20px !important;
    padding: 16px !important;
    border-radius: 12px !important;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4) !important;
    border: none !important;
    width: 100% !important;
    display: block !important;
    transition: 0.3s all ease-in-out !important;
    cursor: pointer !important;
}

/* حركة بسيطة لما الزبون يلمس الزرار بالموبايل */
.guest-checkout-button:active {
    transform: scale(0.97) !important;
    background-color: #218838 !important;
}