/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f4f8;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 480px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

h2 {
  color: #3a3a3a;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="date"],
form input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 1.8px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form input[type="number"]:focus,
form input[type="date"]:focus,
form input[type="file"]:focus {
  border-color: #007bff;
  outline: none;
}

button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

.success {
  color: green;
  font-weight: 600;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 15px;
}

.error {
  color: red;
  font-weight: 600;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 15px;
}

ul {
  list-style: none;
  padding-left: 0;
}

.withdrawal-request {
  background: #e9ecef;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.withdrawal-request button {
  margin-right: 10px;
  width: auto;
  padding: 6px 12px;
}
