* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html,
body {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f7fafc;
}

.login-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #2c3e50;
}

.form-box {
  background-color: white;
  width: 600px;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  color: #4a5568;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  color: #4a5568;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  color: #4a5568;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 15px;
}

.form-group input:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.5);
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.form-actions button {
  background-color: #4299e1;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-actions button:hover {
  background-color: #2b6cb0;
}

.footer-text {
  text-align: center;
  color: #a0aec0;
  font-size: 0.75rem;
  margin-top: 1rem;
}

.header-title {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}

.title {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
}

a {
  text-decoration: none;
}

.btn-add-top {
  background-color: #0069d9;
  color: white;
  border-style: none;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 999px !important;
}

.btn-add-top:hover {
  background-color: #75a4d6;
}

.btn-add {
  background-color: #2c3e50;
  color: white;
  border-style: none;
  padding: 10px !important;
  margin-top: 7px;
}

.btn-add:hover {
  background-color: #434f5a;
}

input:disabled {
  background-color: #f0f0f0;
}

select:disabled {
  background-color: #f0f0f0;
}

.hidden {
  display: none;
}

.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.185);
}

.user-product-title {
  font-size: 1.3rem;
  text-align: center;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-top: none;
  box-sizing: border-box;
  color: #6b7280;
  outline: none;
  padding: 14px 24px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  font-weight: bold;
  border-radius: 10px 10px 10px 10px;
  margin-bottom: 10px;
}

.adjustments-container {
  margin: 30px 0;
}

#form-error {
  color: red;
}

#logout {
  border-radius: 15px;
}

#version {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ccc;
}
