/* Existing CSS */
body {
  font-family: Verdana, Geneva, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* Row */
.row {
  display: flex;
  /* justify-content: space-between; */

  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Columns */
.col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.col-md-4 {
  flex: 0 0 33%;
  max-width: 30%;
  padding: 0 15px;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

.col-md-9 {
  flex: 0 0 50%;
  max-width: 75%;
  padding: 0 15px;
}

.main_area {
  display: flex;
  justify-content: center;
}

.login_register_area {
  background-color: white;
  padding: 20px 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 100%;
  text-align: left;
  margin: 20px 0;
  line-height: 30px;
}

.account_area {
  background-color: white;
  padding: 20px 50px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  text-align: left;
  margin: 20px 0;
  line-height: 30px;
}

h1 {
  margin-bottom: 20px;
}
a {
  text-decoration: none;
}
.form-group {
  margin-bottom: 15px;
  text-align: left;
}

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #007bff;
}

.btn {
  display: block;
  padding: 10px;
  background-color: #ff9c00;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.btn:hover {
  background-color: #e68a00;
}

.signup-link {
  margin-top: 10px;
}

.signup-link a {
  color: #007bff;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}

.header img {
  width: 100%;
}

h2 {
  text-align: center;
  color: #000;
}

.instructions {
  text-align: center;
  color: #d9534f;
  font-weight: bold;
  margin-bottom: 20px;
}

.accordion-button {
  background-color: white;
  color: #333;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  border-radius: 4px;
  margin-top: 10px;
}

.accordion-button.active,
.accordion-button:hover {
  background-color: #f1f1f1;
}

.accordion-content {
  padding: 10px 18px;
  display: none;
  overflow: hidden;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.accordion-content p {
  margin: 10px 0;
}

.form-group textarea {
  resize: none;
}

#abstract-form {
  width: 100%;
}

#abstract-form .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

#abstract-form .col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.form-control {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea.form-control {
  height: 100px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 18px;
  text-align: left;
}

.styled-table thead tr {
  background-color: #009879;
  color: #ffffff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

.styled-table tbody tr:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.styled-table a {
  color: #009879;
  text-decoration: none;
}

.styled-table a:hover {
  text-decoration: underline;
}

/* Form Sections */
.form-section {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
}

.form-section h3 {
  background-color: #1e73be;
  color: white;
  padding: 10px;
  margin: -15px -15px 10px -15px;
  border-radius: 8px 8px 0 0;
  font-size: 18px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.word-count {
  text-align: right;
  margin-bottom: 10px;
  font-weight: bold;
}

.error {
  color: red;
  font-size: 0.9em;
}

/* custom.css */
.label {
  font-size: 12px;
  padding: 0px 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.label-primary {
  background-color: #007bff !important;
  color: white !important;
}

.label-secondary {
  background-color: #6c757d !important;
  color: white !important;
}

.label-success {
  background-color: #28a745 !important;
  color: white !important;
}

.label-danger {
  background-color: #dc3545 !important;
  color: white !important;
}

.label-warning {
  background-color: #ffc107 !important;
  color: black !important;
}

.label-info {
  background-color: #17a2b8 !important;
  color: white !important;
}

.label-light {
  background-color: #f8f9fa !important;
  color: black !important;
}
.label-dark {
  background-color: #343a40 !important;
  color: white !important;
}
