body {
    padding: 20px 40px;
}

textarea {
    margin-bottom: 10px;
}

.auto-generation,
.exemptions {
    border-radius: 15px;
    padding: 10px 20px;
    padding-bottom: 25px;
    margin-bottom: 20px;
    background: #f4f4f4;
    width: 100%;
    max-width: 1300px;
    box-sizing: border-box;
}

#github-url-form {
    margin-bottom: 0px;
}

.usa-alert {
    margin-bottom: 15px;
    max-width: 1300px;
    animation: slideDown 0.3s ease;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.step-number {
    background-color: #337AB7;
    color: white;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.not-exempt {
    color: green;
    display: inline-block;
}

.button-actions {
    margin-top: 20px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide the broken default icon */
.formio-component-datetime .input-group-append .input-group-text i {
    display: none;
}

/* Inject an SVG calendar icon via CSS */
.formio-component-datetime .input-group-append .input-group-text::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23005ea2'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5C3.9 4 3 4.9 3 6v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zM7 11h5v5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}