diff --git a/css/index.css b/css/index.css index 24a20f7..773bd71 100644 --- a/css/index.css +++ b/css/index.css @@ -2159,4 +2159,44 @@ body { .smart-highlight { color: #ffcc66; font-weight: 600; +} +.spinner { + width: 14px; + height: 14px; + border: 2px solid white; + border-top: 2px solid transparent; + border-radius: 50%; + display: inline-block; + animation: spin 0.6s linear infinite; + margin-left: 8px; + vertical-align: middle; +} + +@keyframes spin { + to { + transform: rotate(360deg); + } +} +.toast-message { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background: #1f2937; + color: white; + padding: 14px 24px; + border-radius: 10px; + font-size: 15px; + font-weight: 500; + z-index: 9999; + display: none; + box-shadow: 0 4px 15px rgba(0,0,0,0.2); +} + +.toast-success { + background: #16a34a; +} + +.toast-error { + background: #dc2626; } \ No newline at end of file diff --git a/index.html b/index.html index da78416..87ad130 100644 --- a/index.html +++ b/index.html @@ -21,8 +21,8 @@
Don't have an account? @@ -282,11 +282,12 @@