.layout{display:flex;flex-direction:column;min-height:100vh}.header{background:#1e293b;padding:1rem 0;box-shadow:0 4px 6px #0000001a;position:sticky;top:0;z-index:100}.header .container{display:flex;justify-content:space-between;align-items:center}.header .logo{text-decoration:none;color:#f1f5f9}.header .logo h1{font-size:1.5rem;background:linear-gradient(135deg,#22d3ee,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.header .nav{display:flex;align-items:center;gap:1.5rem}.header .nav .nav-link{color:#94a3b8;text-decoration:none;font-weight:500;transition:color .3s ease}.header .nav .nav-link:hover{color:#22d3ee}.main-content{flex:1;padding:2rem 0}.footer{background:#1e293b;padding:2rem 0;margin-top:4rem;text-align:center;color:#94a3b8;font-size:.875rem}@media(max-width:768px){.header .nav{gap:.75rem;font-size:.875rem}.header .nav .nav-link{display:none}.header .nav .nav-link:last-child{display:inline-block}}.landing-page .hero{text-align:center;padding:4rem 1rem;background:linear-gradient(135deg,#22d3ee1a,#8b5cf61a)}.landing-page .hero .hero-title{font-size:3rem;margin-bottom:1rem;background:linear-gradient(135deg,#22d3ee,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.landing-page .hero .hero-subtitle{font-size:1.25rem;color:#94a3b8;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}.landing-page .hero .hero-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}.landing-page .features{padding:4rem 1rem}.landing-page .features h2{text-align:center;font-size:2.5rem;margin-bottom:3rem}.landing-page .features .features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.landing-page .features .feature-card{background:#1e293b;padding:2rem;border-radius:12px;text-align:center;transition:transform .3s ease}.landing-page .features .feature-card:hover{transform:translateY(-5px)}.landing-page .features .feature-card .feature-icon{font-size:3rem;margin-bottom:1rem}.landing-page .features .feature-card h3{font-size:1.5rem;margin-bottom:1rem;color:#22d3ee}.landing-page .features .feature-card p{color:#94a3b8;line-height:1.7}.landing-page .cta{padding:4rem 1rem;text-align:center;background:linear-gradient(135deg,#22d3ee0d,#8b5cf60d)}.landing-page .cta h2{font-size:2.5rem;margin-bottom:1rem}.landing-page .cta p{font-size:1.125rem;color:#94a3b8;margin-bottom:2rem}@media(max-width:768px){.landing-page .hero{padding:2rem 1rem}.landing-page .hero .hero-title{font-size:2rem}.landing-page .hero .hero-subtitle{font-size:1rem}.landing-page .features h2{font-size:2rem}.landing-page .features .features-grid{grid-template-columns:1fr}}.auth-page{min-height:calc(100vh - 200px);display:flex;align-items:center;justify-content:center;padding:2rem 1rem}.auth-container{width:100%;max-width:450px}.auth-card{background:#1e293b;padding:2.5rem;border-radius:12px;box-shadow:0 4px 6px #0000001a}.auth-card h2{font-size:2rem;margin-bottom:.5rem;text-align:center}.auth-card .subtitle{text-align:center;color:#94a3b8;margin-bottom:2rem}.auth-form .form-actions{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.auth-form .form-actions .checkbox{display:flex;align-items:center;gap:.5rem;font-size:.875rem;color:#94a3b8;cursor:pointer}.auth-form .form-actions .checkbox input[type=checkbox]{width:auto}.auth-form .form-actions .link{color:#22d3ee;text-decoration:none;font-size:.875rem}.auth-form .form-actions .link:hover{text-decoration:underline}.auth-footer{text-align:center;margin-top:1.5rem;color:#94a3b8}.auth-footer a{color:#22d3ee;text-decoration:none;font-weight:600}.auth-footer a:hover{text-decoration:underline}.verify-email-page{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#667eea,#764ba2);padding:20px}.verify-email-container{width:100%;max-width:500px}.verify-email-card{background:#fff;border-radius:20px;padding:60px 40px;text-align:center;box-shadow:0 20px 60px #0000004d}.verify-email-card h2{font-size:28px;margin:20px 0 10px;color:#333}.verify-email-card p{color:#666;margin-bottom:20px;line-height:1.6}.spinner{width:60px;height:60px;border:4px solid #f3f3f3;border-top:4px solid #667eea;border-radius:50%;animation:spin 1s linear infinite;margin:0 auto 20px}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.success-icon{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;font-size:48px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;animation:scaleIn .5s ease-out}.error-icon{width:80px;height:80px;border-radius:50%;background:#ff6b6b;color:#fff;font-size:48px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;animation:scaleIn .5s ease-out}@keyframes scaleIn{0%{transform:scale(0)}50%{transform:scale(1.1)}to{transform:scale(1)}}.redirect-message{font-size:14px;color:#999;margin-top:20px}.verify-email-actions{display:flex;flex-direction:column;gap:15px;margin-top:30px}.verify-email-actions button{padding:15px 30px;border:none;border-radius:10px;font-size:16px;font-weight:600;cursor:pointer;transition:all .3s ease}.verify-email-actions button.btn-primary{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff}.verify-email-actions button.btn-primary:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 10px 20px #667eea66}.verify-email-actions button.btn-primary:disabled{opacity:.6;cursor:not-allowed}.verify-email-actions button.btn-secondary{background:#f5f5f5;color:#333}.verify-email-actions button.btn-secondary:hover{background:#e0e0e0}@media(max-width:768px){.verify-email-card{padding:40px 30px}.verify-email-card h2{font-size:24px}.success-icon,.error-icon{width:60px;height:60px;font-size:36px}}.profile-setup-page{min-height:100vh;background:linear-gradient(135deg,#667eea,#764ba2);padding:20px;display:flex;align-items:center;justify-content:center}.setup-container{background:#fff;border-radius:20px;max-width:700px;width:100%;padding:40px;box-shadow:0 20px 60px #0000004d}.setup-header{margin-bottom:40px}.setup-header .progress-bar{height:6px;background:#e0e0e0;border-radius:3px;overflow:hidden;margin-bottom:10px}.setup-header .progress-bar .progress-fill{height:100%;background:linear-gradient(90deg,#667eea,#764ba2);transition:width .3s ease}.setup-header .step-indicator{text-align:center;color:#666;font-size:14px;font-weight:600}.setup-content{min-height:400px}.setup-content .setup-step h2{font-size:28px;margin-bottom:10px;color:#333}.setup-content .setup-step .step-description{color:#666;margin-bottom:30px;font-size:15px}.error-message{background:#ffebee;color:#c62828;padding:15px;border-radius:10px;margin-bottom:20px;text-align:center;font-weight:500}.photo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:15px;margin-bottom:20px}.photo-grid .photo-item{position:relative;aspect-ratio:3/4;border-radius:15px;overflow:hidden;box-shadow:0 4px 10px #0000001a}.photo-grid .photo-item img{width:100%;height:100%;object-fit:cover}.photo-grid .photo-item .delete-photo-btn{position:absolute;top:10px;right:10px;background:#000000b3;color:#fff;border:none;width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center}.photo-grid .photo-item .delete-photo-btn:hover{background:#f00c}.photo-grid .photo-item .verified-badge{position:absolute;bottom:10px;right:10px;background:#4caf50;color:#fff;width:25px;height:25px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px}.photo-grid .photo-upload-btn{aspect-ratio:3/4;border:2px dashed #ccc;border-radius:15px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s ease;color:#999;font-size:16px;font-weight:600}.photo-grid .photo-upload-btn:hover{border-color:#667eea;color:#667eea;background:#667eea0d}.photo-count{text-align:center;color:#999;font-size:14px}textarea{width:100%;padding:15px;border:2px solid #e0e0e0;border-radius:10px;font-size:15px;font-family:inherit;resize:vertical;transition:border-color .3s ease}textarea:focus{outline:none;border-color:#667eea}.char-count{text-align:right;color:#999;font-size:13px;margin-top:5px}.interests-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px}.interests-grid .interest-chip{padding:12px 20px;border:2px solid #e0e0e0;background:#fff;border-radius:25px;cursor:pointer;transition:all .3s ease;font-size:14px;font-weight:500;color:#666}.interests-grid .interest-chip:hover{border-color:#667eea;color:#667eea}.interests-grid .interest-chip.selected{background:linear-gradient(135deg,#667eea,#764ba2);border-color:transparent;color:#fff}.form-fields{display:flex;flex-direction:column;gap:20px}.form-fields .form-group label{display:block;margin-bottom:8px;color:#333;font-weight:600;font-size:14px}.form-fields .form-group input,.form-fields .form-group select{width:100%;padding:12px 15px;border:2px solid #e0e0e0;border-radius:10px;font-size:15px;font-family:inherit;transition:border-color .3s ease}.form-fields .form-group input:focus,.form-fields .form-group select:focus{outline:none;border-color:#667eea}.form-fields .form-group input[type=range]{padding:0;height:6px;background:#e0e0e0;border:none;border-radius:3px;-webkit-appearance:none}.form-fields .form-group input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:20px;height:20px;border-radius:50%;background:linear-gradient(135deg,#667eea,#764ba2);cursor:pointer}.form-fields .form-group input[type=range]::-moz-range-thumb{width:20px;height:20px;border-radius:50%;background:linear-gradient(135deg,#667eea,#764ba2);cursor:pointer;border:none}.form-fields .range-inputs{display:flex;flex-direction:column;gap:10px}.prompts-section{display:flex;flex-direction:column;gap:25px}.prompts-section .prompt-group select,.prompts-section .prompt-group textarea{width:100%;margin-bottom:10px}.prompts-section .prompt-group select{padding:12px 15px;border:2px solid #e0e0e0;border-radius:10px;font-size:15px;font-family:inherit;transition:border-color .3s ease}.prompts-section .prompt-group select:focus{outline:none;border-color:#667eea}.setup-actions{display:flex;gap:15px;margin-top:40px}.setup-actions button{flex:1;padding:15px 30px;border:none;border-radius:10px;font-size:16px;font-weight:600;cursor:pointer;transition:all .3s ease}.setup-actions button.btn-primary{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff}.setup-actions button.btn-primary:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 10px 20px #667eea66}.setup-actions button.btn-primary:disabled{opacity:.6;cursor:not-allowed}.setup-actions button.btn-secondary{background:#f5f5f5;color:#333}.setup-actions button.btn-secondary:hover:not(:disabled){background:#e0e0e0}@media(max-width:768px){.setup-container{padding:30px 20px}.setup-content{min-height:350px}.setup-content .setup-step h2{font-size:24px}.photo-grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px}.interests-grid{grid-template-columns:repeat(auto-fill,minmax(100px,1fr))}.setup-actions{flex-direction:column}.setup-actions button{width:100%}}.home-page{max-width:600px;margin:0 auto;padding:1rem}.home-page .discover-header{text-align:center;margin-bottom:2rem}.home-page .discover-header h2{font-size:2rem;margin-bottom:.5rem}.home-page .discover-header p{color:#94a3b8}.home-page .card-container{display:flex;justify-content:center}.home-page .profile-card{background:#1e293b;border-radius:12px;overflow:hidden;box-shadow:0 10px 40px #0000004d;width:100%;max-width:500px}.home-page .profile-card .profile-image{position:relative;width:100%;height:500px;background:linear-gradient(135deg,#0f172a,#1e293b)}.home-page .profile-card .profile-image img{width:100%;height:100%;object-fit:cover}.home-page .profile-card .profile-image .no-photo{display:flex;align-items:center;justify-content:center;height:100%;color:#94a3b8;font-size:1.5rem}.home-page .profile-card .profile-image .verified-badge{position:absolute;top:1rem;right:1rem;background:#10b981;color:#fff;padding:.5rem 1rem;border-radius:20px;font-size:.875rem;font-weight:600;display:flex;align-items:center;gap:.25rem}.home-page .profile-card .profile-info{padding:1.5rem}.home-page .profile-card .profile-info h3{font-size:1.75rem;margin-bottom:.5rem}.home-page .profile-card .profile-info .location{color:#94a3b8;margin-bottom:1rem}.home-page .profile-card .profile-info .bio{margin-bottom:1rem;line-height:1.6}.home-page .profile-card .profile-info .interests{display:flex;flex-wrap:wrap;gap:.5rem}.home-page .profile-card .profile-info .interests .interest-tag{background:#22d3ee33;color:#22d3ee;padding:.375rem .75rem;border-radius:20px;font-size:.875rem}.home-page .profile-card .card-actions{display:flex;justify-content:center;gap:2rem;padding:1.5rem}.home-page .profile-card .card-actions .btn{width:70px;height:70px;border-radius:50%;font-size:2rem;display:flex;align-items:center;justify-content:center;transition:all .3s ease}.home-page .profile-card .card-actions .btn.btn-pass{background:#ef444433;color:#ef4444;border:2px solid #EF4444}.home-page .profile-card .card-actions .btn.btn-pass:hover{background:#ef4444;color:#fff;transform:scale(1.1)}.home-page .profile-card .card-actions .btn.btn-like{background:#10b98133;color:#10b981;border:2px solid #10B981}.home-page .profile-card .card-actions .btn.btn-like:hover{background:#10b981;color:#fff;transform:scale(1.1)}.home-page .no-matches{text-align:center;padding:3rem 1rem}.home-page .no-matches h2{font-size:2rem;margin-bottom:1rem}.home-page .no-matches p{color:#94a3b8;margin-bottom:2rem}@media(max-width:768px){.home-page .profile-card .profile-image{height:400px}}.profile-page{max-width:900px;margin:0 auto;padding:1rem}.profile-page .profile-container{background:#1e293b;border-radius:12px;padding:2rem}.profile-page .profile-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid rgba(148,163,184,.2)}.profile-page .profile-header h2{font-size:2rem}.profile-page .profile-section{margin-bottom:2.5rem}.profile-page .profile-section h3{font-size:1.5rem;margin-bottom:1rem;color:#22d3ee}.profile-page .profile-section .help-text{color:#94a3b8;font-size:.875rem;margin-top:.5rem}.profile-page .photo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:1rem}.profile-page .photo-grid .photo-item{position:relative;aspect-ratio:1;border-radius:12px;overflow:hidden;background:#0f172a}.profile-page .photo-grid .photo-item img{width:100%;height:100%;object-fit:cover}.profile-page .photo-grid .photo-item .photo-verified{position:absolute;bottom:.5rem;left:.5rem;background:#10b981;color:#fff;padding:.25rem .5rem;border-radius:12px;font-size:.75rem;font-weight:600}.profile-page .photo-grid .photo-item .btn-delete{position:absolute;top:.5rem;right:.5rem;background:#ef4444e6;color:#fff;border:none;width:30px;height:30px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s ease}.profile-page .photo-grid .photo-item:hover .btn-delete{opacity:1}.profile-page .photo-grid .photo-item.upload-placeholder{border:2px dashed #94A3B8;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s ease}.profile-page .photo-grid .photo-item.upload-placeholder:hover{border-color:#22d3ee;background:#22d3ee1a}.profile-page .photo-grid .photo-item.upload-placeholder label{cursor:pointer;text-align:center;display:flex;flex-direction:column;align-items:center;gap:.5rem;color:#94a3b8}.profile-page .photo-grid .photo-item.upload-placeholder label .upload-icon{font-size:2rem}.profile-page .photo-grid .photo-item.upload-placeholder label .uploading{color:#22d3ee}.profile-page .info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}.profile-page .info-grid .info-item label{display:block;color:#94a3b8;font-size:.875rem;margin-bottom:.25rem}.profile-page .info-grid .info-item p{font-size:1.125rem;font-weight:500}.profile-page .interests{display:flex;flex-wrap:wrap;gap:.5rem}.profile-page .interests .interest-tag{background:#22d3ee33;color:#22d3ee;padding:.5rem 1rem;border-radius:20px;font-size:.875rem;font-weight:500}@media(max-width:768px){.profile-page .profile-container{padding:1rem}.profile-page .profile-header{flex-direction:column;align-items:flex-start;gap:1rem}.profile-page .photo-grid{grid-template-columns:repeat(2,1fr)}}.messages-page{min-height:100vh;background:#0f172a;padding-top:70px}.messages-container{max-width:1200px;margin:0 auto;height:calc(100vh - 90px);display:grid;grid-template-columns:350px 1fr;background:#1e293b;border-radius:12px;overflow:hidden;box-shadow:0 2px 8px #0000001a}@media(max-width:768px){.messages-container{grid-template-columns:1fr}}.conversations-list{border-right:1px solid rgba(148,163,184,.2);display:flex;flex-direction:column}@media(max-width:768px){.conversations-list{display:none}.conversations-list.mobile-visible{display:flex}}.conversations-header{padding:20px;border-bottom:1px solid rgba(148,163,184,.2)}.conversations-header h2{margin:0;font-size:24px;color:#f1f5f9}.conversations-scroll{flex:1;overflow-y:auto}.conversation-item{display:flex;gap:12px;padding:16px 20px;cursor:pointer;border-bottom:1px solid rgba(148,163,184,.1);transition:background .2s}.conversation-item:hover{background:#ffffff0d}.conversation-item.active{background:#22d3ee1a;border-left:3px solid #22D3EE}.conversation-avatar{flex-shrink:0;width:50px;height:50px;border-radius:50%;overflow:hidden}.conversation-avatar img{width:100%;height:100%;object-fit:cover}.avatar-placeholder{width:100%;height:100%;background:#22d3ee;color:#fff;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:700}.conversation-info{flex:1;min-width:0}.conversation-header-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:4px}.conversation-header-row h3{margin:0;font-size:16px;color:#f1f5f9;font-weight:600}.conversation-time{font-size:12px;color:#94a3b8}.conversation-preview{display:flex;justify-content:space-between;align-items:center;gap:8px}.conversation-preview p{margin:0;font-size:14px;color:#94a3b8;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex:1}.conversation-preview p.unread{color:#f1f5f9;font-weight:600}.unread-badge{background:#22d3ee;color:#fff;font-size:12px;padding:2px 8px;border-radius:12px;font-weight:600}.chat-view{display:flex;flex-direction:column;background:#1e293b}.chat-header{padding:16px 20px;border-bottom:1px solid rgba(148,163,184,.2);background:#1e293b}.chat-user-info{display:flex;align-items:center;gap:12px}.chat-avatar{width:40px;height:40px;border-radius:50%;overflow:hidden}.chat-avatar img{width:100%;height:100%;object-fit:cover}.chat-header h3{margin:0;font-size:18px;color:#f1f5f9;font-weight:600}.messages-list{flex:1;overflow-y:auto;padding:20px;display:flex;flex-direction:column;gap:12px;background:#0f172a}.message{display:flex;max-width:70%}.message.sent{align-self:flex-end}.message.sent .message-bubble{background:#22d3ee;color:#fff}.message.received{align-self:flex-start}.message.received .message-bubble{background:#1e293b;color:#f1f5f9;border:1px solid rgba(148,163,184,.2)}.message-bubble{padding:12px 16px;border-radius:18px;max-width:100%;word-wrap:break-word}.message-bubble p{margin:0 0 4px;font-size:15px;line-height:1.4}.message-time{font-size:11px;opacity:.7}.message-input-form{display:flex;gap:12px;padding:16px 20px;border-top:1px solid rgba(148,163,184,.2);background:#1e293b}.message-input-form input{flex:1;padding:12px 16px;border:1px solid rgba(148,163,184,.2);border-radius:24px;font-size:15px;outline:none;background:#0f172a;color:#f1f5f9}.message-input-form input:focus{border-color:#22d3ee}.message-input-form input::placeholder{color:#94a3b8}.message-input-form button{padding:12px 24px;border-radius:24px;white-space:nowrap}.chat-placeholder,.chat-empty-state{flex:1;display:flex;align-items:center;justify-content:center;text-align:center;color:#94a3b8}.placeholder-content{max-width:300px}.placeholder-icon,.empty-icon{font-size:64px;margin-bottom:16px}.chat-empty-state{flex-direction:column;gap:8px}.chat-empty-state p{margin:0;font-size:15px;color:#94a3b8}.messages-empty{min-height:100vh;display:flex;align-items:center;justify-content:center;background:#0f172a;padding:20px}.empty-state{text-align:center;max-width:400px}.empty-state h2{margin:16px 0 8px;color:#f1f5f9}.empty-state p{color:#94a3b8;margin-bottom:24px}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#0f172a;color:#f1f5f9;line-height:1.6}#root{min-height:100vh}.container{max-width:1200px;margin:0 auto;padding:0 1rem}.btn{padding:.75rem 1.5rem;border:none;border-radius:12px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;text-decoration:none;display:inline-block}.btn:disabled{opacity:.6;cursor:not-allowed}.btn.btn-primary{background:#22d3ee;color:#0f172a}.btn.btn-primary:hover:not(:disabled){background:#10b4cd;transform:translateY(-2px)}.btn.btn-secondary{background:#1e293b;color:#f1f5f9;border:2px solid #94A3B8}.btn.btn-secondary:hover:not(:disabled){border-color:#22d3ee;background:#22d3ee1a}.btn.btn-block{width:100%}.btn.btn-large{padding:1rem 2rem;font-size:1.125rem}.form-group{margin-bottom:1.5rem}.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:#94a3b8}.form-group input,.form-group select,.form-group textarea{width:100%;padding:.875rem;border:2px solid #94A3B8;border-radius:12px;background:#1e293b;color:#f1f5f9;font-size:1rem;transition:border-color .3s ease}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#22d3ee}.form-group input::placeholder,.form-group select::placeholder,.form-group textarea::placeholder{color:#94a3b8}.alert{padding:1rem;border-radius:12px;margin-bottom:1rem}.alert.alert-error{background:#ef44441a;border:1px solid #EF4444;color:#f37373}.alert.alert-success{background:#10b9811a;border:1px solid #10B981;color:#14e8a2}.loading-container{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:400px;gap:1rem}.loading-container .spinner{width:50px;height:50px;border:4px solid #1E293B;border-top-color:#22d3ee;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.text-center{text-align:center}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
