body .content-wrapper > section.content > .sonata-ba-form > form {
    margin-bottom: 10px;
}

.hr-after {
    display: block; /* ensure it behaves like a block element */
    position: relative;
    width: 100%;
}

.hr-after::after {
    content: "";
    display: block;
    width: 100%;
    margin: 0.5em 0;
    border-bottom: 1px solid #ccc;
}

.space-before {
    margin-top: 30px;
}

.text-align-center {
    text-align: center;
}

.font-size-large {
    font-size: large;
}

.d-none {
    display: none;
}

.padding-r-10 {
    padding-right: 10px;
}

.font-bold {
    font-weight: bold;
}

details {
    margin-top: 8px;
    font-size: 14px;
}
details summary {
    cursor: pointer;
    color: #003cff;
    font-weight: bold;
    opacity: 0.6;
}
details summary::-webkit-details-marker {
    display: none; /* hide default marker */
}
details[open] summary::after {
    content: " ▲";
    font-size: 12px;
}
details summary::after {
    content: " ▼";
    font-size: 12px;
}
.custom-help-text {
    margin-top: 6px;
    padding: 8px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.text-red {
    color: red;
}