/* General Styling */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  color: #fff;
  background-color: #0e0e0e;
}
.login-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login-container {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.1);
  text-align: center;
}
input {
  display: block;
  width: 100%;
  margin: 15px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #2a2a2a;
  color: #fff;
}
button {
  background: #00ffd0;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background: #00cba0;
}
.footer {
  margin-top: 20px;
  font-size: 12px;
  color: #888;
}
.logo {
  font-size: 32px;
  color: #00ffd0;
  margin-bottom: 30px;
}

/* Dashboard Layout */
.dashboard-bg {
  display: flex;
  height: 100vh;
  background: #121212;
  overflow: hidden;
}
.sidebar {
  width: 250px;
  background: #1a1a1a;
  padding: 20px;
  box-shadow: 5px 0 20px rgba(0,0,0,0.5);
}
.side-title {
  color: #00ffd0;
  margin-bottom: 30px;
  font-size: 24px;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar li {
  padding: 15px;
  background: #2a2a2a;
  margin: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.sidebar li:hover {
  transform: scale(1.05);
  background: #00ffd0;
  color: #000;
}
.main-panel {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
  animation: fadeIn 0.6s ease-in;
}
.tab {
  display: none;
  transition: all 0.3s ease;
}
.tab.active {
  display: block;
  animation: grow 0.5s ease-in-out;
}
.stat-box {
  background: #222;
  padding: 20px;
  margin: 10px 0;
  border-radius: 10px;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.grow-on-hover:hover {
  transform: scale(1.1);
  background: #00ffd0;
  color: #000;
}
.deploy-btn {
  background: #ff0066;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  transition: transform 0.2s;
}
.deploy-btn:hover {
  transform: scale(1.05);
  background: #ff3399;
}
.popup {
  position: fixed;
  right: -400px;
  top: 20px;
  background: #ff003c;
  padding: 20px;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
  transition: right 0.4s ease;
}
.popup.active {
  right: 20px;
}
@keyframes grow {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}