/* Kevin Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #121212;
  color: white;
}

/* Logo default styling */
.logo {
  max-width: 100px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Form and input basics */
input, select, textarea, button {
  font-family: inherit;
}

/* === Corner Buttons (Dashboard + Theme Toggle) === */
.corner-btn {
  position: fixed;
  top: 20px;
  padding: 12px 16px;
  font-size: 18px;
  border-radius: 50%;
  background: #f4a261;
  color: #000;
  border: none;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.2s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  text-decoration: none;
}
.corner-btn:hover {
  transform: scale(1.1);
  background: #ffa65e;
}
.corner-btn.left {
  left: 20px;
}
.corner-btn.right {
  right: 20px;
}

/* === Light Mode Theme Toggle === */
body.light-mode {
  background: #f5f5f5;
  color: #111;
}
body.light-mode form,
body.light-mode table,
body.light-mode input,
body.light-mode select,
body.light-mode textarea {
  background: #fff;
  color: #111;
}
body.light-mode .corner-btn {
  background: #444;
  color: #fff;
}

/* === Dashboard Tiles (Optional if reused) === */
.dashboard-tile {
  background: #1e1e1e;
  padding: 20px;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #f4a261;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
}
.dashboard-tile:hover {
  background: #2e2e2e;
  transform: scale(1.02);
}

/* === Media Responsive === */
@media (max-width: 768px) {
  .corner-btn {
    padding: 10px;
    font-size: 16px;
  }

  .dashboard-tile {
    font-size: 14px;
    padding: 16px;
  }

  .logo {
    max-width: 80px;
  }
}
