/* Basic Page Styling */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(120deg, #74ebd5, #ACB6E5);
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 350px;
}

h2 {
  margin-bottom: 20px;
  color: #333;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"] {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 14px;
}

input[type="submit"] {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

input[type="submit"]:hover {
  background: #45a049;
}

/* Table for Profile */
table {
  margin-top: 15px;
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: left;
  color: #333;
  padding-right: 10px;
}

td {
  color: #555;
}

/* Links */
p {
  margin-top: 15px;
  font-size: 14px;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Image */
img {
  border-radius: 10px;
  margin-top: 10px;
}

/* Logout Button */
.logout-btn {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.logout-btn:hover {
  background: #c0392b;
}
