/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body Base */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* Header */
h1, h2, h3 {
  color: #030062;
  margin-bottom: 16px;
}

/* Buttons */
button,
.btn {
  background-color: #030062;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s ease;
}

button:hover,
.btn:hover {
  background-color: #1a1a85;
  cursor: pointer;
}

/* Inputs & Textareas */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin: 8px 0 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table td, table th {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: top;
}

table th {
  background-color: #030062;
  color: white;
}

/* Photo Style */
img.photo {
  max-width: 130px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Footer Style */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 30px;
}

.footer .center-logo img {
  max-height: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }

  .photo {
    text-align: center;
    margin-top: 15px;
  }

  table td,
  table th {
    font-size: 14px;
  }

  .container {
    margin: 20px;
    padding: 15px;
  }
}
