/**
 * Slotify confirmation page styles.
 * Used on the standalone confirmation result page.
 */
* { box-sizing: border-box; }
body { margin: 0; padding: 0; min-height: 100vh; background: #f0f0f1; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif; font-size: 16px; line-height: 1.5; color: #1d2327; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
.slotify-confirm-page { max-width: 480px; width: 100%; background: #fff; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); overflow: hidden; text-align: center; }
.slotify-confirm-page__brand { padding: 20px 24px; background: linear-gradient(135deg, #2271b1 0%, #135e96 100%); color: #fff; font-size: 18px; font-weight: 600; }
.slotify-confirm-page__body { padding: 40px 32px 32px; }
.slotify-confirm-page__icon { margin: 0 auto 20px; width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.slotify-confirm-page__icon--success { background: #00a32a; color: #fff; }
.slotify-confirm-page__icon--error { background: #d63638; color: #fff; }
.slotify-confirm-page__icon svg { width: 48px; height: 48px; }
.slotify-confirm-page__title { margin: 0 0 12px; font-size: 22px; font-weight: 700; color: #1d2327; }
.slotify-confirm-page__message { margin: 0 0 20px; font-size: 15px; color: #50575e; line-height: 1.6; }
.slotify-confirm-page__details { margin: 0 0 28px; padding: 16px 20px; background: #f6f7f7; border-radius: 8px; border: 1px solid #dcdcde; text-align: left; }
.slotify-confirm-page__details p { margin: 0 0 8px; font-size: 14px; color: #1d2327; }
.slotify-confirm-page__details p:last-child { margin-bottom: 0; }
.slotify-confirm-page__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.slotify-confirm-page__btn { display: inline-block; padding: 12px 24px; border-radius: 6px; font-size: 15px; font-weight: 600; text-decoration: none; transition: box-shadow 0.15s ease; }
.slotify-confirm-page__btn--primary { background: #2271b1; color: #fff; border: 1px solid #135e96; }
.slotify-confirm-page__btn--primary:hover { box-shadow: 0 2px 8px rgba(34,113,177,0.35); color: #fff; }
.slotify-confirm-page__footer { padding: 16px 24px; background: #f6f7f7; border-top: 1px solid #dcdcde; font-size: 13px; color: #50575e; }
