#loginOverlay{ position: fixed; inset: 0; display: flex; justify-content: center; align-items: center;
backdrop-filter: blur(8px); background: rgba(0, 0, 0, 0.4); z-index: 999; }

.login-box{ width: 340px; background: white; padding: 30px; border-radius: 16px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); }

.login-box h2{ margin-bottom: 20px; text-align: center; }
.input{ width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #ddd; margin-bottom: 14px; }
.login-box button{ width: 100%; padding: 12px; border: none; border-radius: 10px; background: #111;
color: white; font-weight: 600; }

.login-box button:hover{ background: #222; }
#error{ margin-top: 12px; color: #dc2626; align-items: center; font-size: 14px; }

.summary{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
.card{ background: white; padding: 24px; border-radius: 14px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
font-size: 600; font-size: 18px; }

.logout{ margin-top: 24px; padding: 12px 18px; border: none; border-radius: 10px; background: #dc2626;
color: white; font-weight: 600; transition: background 0.2s ease; }

.logout:hover{ background: #b91c1c; }