/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Body background */
body {
  background-color: #f4f6f9;
  color: #333;
}

/* Centered container for login */
.login-container {
  max-width: 400px;
  margin: 100px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  text-align: center;
}

/* Logo and title */
.bank-logo {
  height: 60px;
  margin-bottom: 20px;
}

.login-container h1 {
  margin-bottom: 10px;
  color: #004080;
}

.login-container p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Input fields */
.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Button */
.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #004080;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-container button:hover {
  background-color: #002a5c;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
  color: #999;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f9;
  color: #333;
}

.dashboard-container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
  text-align: center;
  margin-bottom: 30px;
}

.dashboard-header .logo {
  height: 60px;
  margin-bottom: 10px;
}

.dashboard-header h1 {
  margin: 0;
  font-size: 24px;
}

.dashboard-header .small {
  color: #666;
  font-size: 14px;
}

.account-details h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #004080;
}

.account-details ul {
  list-style: none;
  padding: 0;
}

.account-details li {
  margin-bottom: 10px;
  font-size: 16px;
}

.balance {
  color: green;
  font-weight: bold;
}

.pending-section {
  margin-top: 30px;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 15px;
  border-radius: 8px;
}

.pending-notice {
  color: #856404;
  font-weight: 500;
  font-size: 15px;
}

footer {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 40px;
}
.transfer-limit {
  background-color: #eef6ff;
  border-left: 4px solid #004080;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.transfer-limit h3 {
  margin-bottom: 10px;
  color: #004080;
}

.transfer-limit .locked {
  color: #cc0000;
  font-weight: bold;
}

.transaction-history {
  margin-top: 40px;
}

.transaction-history h3 {
  margin-bottom: 15px;
  color: #004080;
}

.transaction-history table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.transaction-history th,
.transaction-history td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.transaction-history th {
  background-color: #004080;
  color: white;
  font-weight: bold;
}

.transaction-history td {
  color: #333;
}

.transaction-history td span {
  font-weight: bold;
}
@media (max-width: 768px) {
  .transaction-table-wrapper {
    overflow-x: auto;
    margin-top: 15px;
  }

  table {
    min-width: 600px;
  }
}

/* ❄️ WEST UNITY Realistic Full-Screen Snowfall */
.snowflake {
  position: fixed;
  top: -10px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
  animation: fall linear infinite;
  z-index: 999999;
}

@keyframes fall {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) translateX(20px);
    opacity: 0.3;
  }
}
