.abstract-submission-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

.instructions {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.instructions p {
  margin-bottom: 10px;
}

.abstract-form {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.submit-btn {
  background: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #45a049;
}

.form-group input {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
}

.form-group input:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
}

.templateLink {
  color: #4caf50;
}

.form-tabs {
  margin-bottom: 20px;
}
.tab-btn {
  padding: 10px 20px;
  margin-right: 10px;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
}
.tab-btn.active {
  background: #007bff;
  color: white;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.recover-link {
  margin-top: 10px;
  text-align: center;
}
#preference {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
  background-color: #f9f9f9;
  color: #333;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#preference:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
}

option {
  background: #fff;
  color: #333;
  padding: 0.5rem;
}

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

.edit-btn {
  padding: 8px 16px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}

.edit-btn:hover {
  background: #e5e5e5;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  margin-right: 8px;
  vertical-align: middle;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
