#qld-sharps-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
/*    background: #f2f2f2;
    border: 1px solid #cccccc; 
    border-radius: 8px; */
}

.form-step {
    margin-bottom: 20px;
}

button {
    display: inline-block;
    margin: 5px 0;
    padding: 10px 20px;
    background: #ddb16e; /* Yellow */
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size:16px;
    width:100%;
    font-family:sans-serif;
}

button:hover {
    background: #d9a85e; /* Darker yellow */
    transform: scale(1.03);
}

button.danger {
    background: #d9534f; /* Red */
}

button.danger:hover {
    background: #b52b2b; /* Darker red */
}

.custom-input-qsharp {
    width: 97%!important;
    padding: 10px!important;
    margin: 10px 0!important;
    border: 1px solid #cccccc!important;
    border-radius: 5px!important;
    font-size: 1em!important;
    transition: border-color 0.3s ease!important;
}

.custom-input-qsharp:focus {
    border-color: #ddb16e!important;
    outline: none!important;
    box-shadow: 0 0 5px rgba(221, 177, 110, 0.5)!important;
}

/* Accordion general styles */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Hide the checkbox */
.accordion-checkbox {
    display: none;
}

/* Header styles */
.accordion-header {
    cursor: pointer;
    padding: 15px;
    background-color: #f2f2f2;
    border: 1px solid #cccccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #e6e6e6;
}

/* Content styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background-color: #f9f9f9;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Show content when checkbox is checked */
.accordion-checkbox:checked + .accordion-header + .accordion-content {
    max-height: 200px; /* Adjust as needed or use a large value for dynamic height */
    padding: 15px;
}

/* Icon toggling */
.accordion-checkbox:checked + .accordion-header .accordion-icon {
    content: "−";
}

/* Default icon styles */
.accordion-icon {
    font-size: 1.5em;
    font-weight: bold;
}

.my-plugin-alert {
  border-left: 4px solid #00a0d2; /* info colour */
  background: #f1f1f1;
  padding: .8em 1em;
  margin: 1em 0;
  font-size: 1rem;
}
.my-plugin-alert.error {
  border-color: #dc3232;
  background: #fdd;
}