* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f6f8;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 24px auto;
  background: #fff;
  padding: 24px;
  border: 1px solid #d7dce1;
}

h1 {
  margin-top: 0;
  font-size: 2rem;
  text-align: right;
}

h2 {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 6px;
  margin-top: 24px;
  color: #d2006f;
  font-weight: 600;
  font-size: 1.6rem;
}

section {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-label {
  margin-bottom: 0;
  font-weight: 600;
}

input,
textarea,
select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  border: 1px solid #b8c1ca;
  font: inherit;
  border-radius: 0 !important;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ccd4dd;
  padding: 8px;
  text-align: left;
  vertical-align: text-top;
}

button {
  background: #d2006f;
  color: #fff;
  border: 1px solid #fff !important;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn {
  font-size: 0.95rem;
  background: #d2006f;
  color: #fff;
  border: 1px solid #fff !important;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  width: 100%;
  border-radius: 0 !important;
}

button:hover {
  background: #fff;
  color: #d2006f !important;
  border: 1px solid #d2006f !important;
}

button:disabled {
  background: #999;
  cursor: not-allowed;
}

#addRowBtn {
  background: #820067;
  margin-top: 12px;
  width: 100%;
}

#addRowBtn:hover {
  background: #ffffff;
  color: #820067 !important;
  border: 1px solid #820067 !important;
}

.btn-remove {
  background: #ff9800;
  padding: 6px 12px;
  font-size: 0.85rem;
}

.btn-remove:hover {
  background: #f57c00;
}

footer {
  margin-top: 24px;
  font-size: 0.95rem;
}

.header__logo img{
    display: block;
    width: 14rem;
    max-height: 3rem;
}

.feedback.feedback-email{
    height: 28px !important;
    width: 28px !important;
    top: 10px !important;
    border-radius: 0 !important;
}

.login-screen {
  display: block;
}

.login-screen.d-none {
  display: none;
}

.login-section {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.login-section h2 {
  margin-top: 0;
}

.login-section p {
  color: #666;
  margin-bottom: 20px;
}

#mainFormContainer {
  display: block;
}

#mainFormContainer.d-none {
  display: none;
}