/* Form styling */
.solsys-form label {
  display: block;
  margin-bottom: 10px;
}
.solsys-form input[type="text"],
.solsys-form input[type="email"],
.solsys-form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 10px;
  font-size: 16px;
}
.solsys-form input[type="submit"] {
  background-color: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
}
.solsys-form .error {
  color: red;
  margin-bottom: 10px;
}

/* Confirmation message styling */
.solsys-confirmation {
  background-color: #0073aa;
  color: #fff;
  padding: 20px;
  border-radius: 3px;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Form container styling */
.solsys-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.message_border{
    border: 1px solid #00a491; 
    padding: 10px; 
    margin-top: 30px;
	width:100%;
}

.msgSuccess{
	color:#009900;
}

#message_border{
    border: 1px solid #00a491; 
    padding: 10px; 
    margin-top: 20px;
}

.solsys-form-search {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.solsys-form-search label {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.solsys-form-search input[type="text"], .solsys-form-search select {
    display: inline-block;
    width: auto;
    margin-right: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

.solsys-form-search input[type="submit"] {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
}

.solsys-form-search input[type="submit"]:hover {
    background-color: #005d84;
}

.solsys-form-container {
  max-width: 100%;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.solsys-form-submit {
  margin-right: 1rem;
}

.btn {
  display: inline-block;
  font
}

.solsys-form-stats {
  border: 1px solid #ccc;
  padding: 20px;
  margin-top: 20px;
}

.solsys-form-stats h2 {
  margin-top: 0;
}

.solsys-form-container table td {
  vertical-align: top;
}

.solsys-form-stats table {
  border-collapse: collapse;
  width: 100%;
}

.solsys-form-stats table th, .solsys-form-stats table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  vertical-align: top;;
}

.solsys-form-stats table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.solsys-form-stats table td:first-child {
  text-align: left;
}

.solsys-form-stats table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.solsys-form-stats table tr:hover {
  background-color: #ddd;
}

.solsys-help-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}
.solsys-help-icon a {
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    color: #555;
    background: #eee;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

#help-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}

#help-popup {
  background-color: #fff;
  width: 400px;
  margin: 100px auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#close-help {
  margin-top: 10px;
}

#confirmation_message_box{
	color: green;
	text-align: center;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-left-color: #09f;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
