body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  color: #f0f0f0;
  background: linear-gradient(to bottom, rgb(15.632, 99.3748571429, 179.768), rgb(12.368, 78.6251428571, 142.232));
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 0.75rem 0;
  color: #fff;
}

p {
  line-height: 1.6;
  margin: 0.75rem 0;
  color: #f0f0f0;
  font-size: 1rem;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding: 1rem;
}

.panel {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  background-color: #fff;
  color: #0e59a1;
  border-color: #fff;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

form {
  margin: 1rem 0;
}
form .form-group {
  margin-bottom: 1rem;
}
form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}
form .form-group input[type=text],
form .form-group input[type=password],
form .form-group input[type=file],
form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 1rem;
  color: #222;
  background-color: #f8fafc;
}
form .form-group input[type=text]:focus,
form .form-group input[type=password]:focus,
form .form-group input[type=file]:focus,
form .form-group textarea:focus {
  outline: 2px solid #0e59a1;
  border-color: #0e59a1;
}
form .form-group textarea {
  resize: vertical;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
table th, table td {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  color: #f0f0f0;
  vertical-align: top;
}
table th {
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
}
table tr:hover td {
  background-color: rgba(255, 255, 255, 0.05);
}

.progress-container {
  margin: 1rem 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  height: 20px;
}
.progress-container .progress-bar {
  background-color: #38a169;
  height: 20px;
  width: 0%;
  transition: width 0.1s ease-in-out;
}

header, footer {
  text-align: center;
  padding: 1rem;
}

.top-bar {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.logout-btn {
  margin-left: 1rem;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.hidden {
  display: none !important;
}
