.ld-report-formatter {
    max-width: 600px;
    margin: 2rem auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ld-report-formatter h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #23282d;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #23282d;
}

input[type="file"],
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

button[type="submit"] {
    background: #2271b1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

button[type="submit"]:hover {
    background: #135e96;
}

.download-link {
    margin-top: 2rem;
    text-align: center;
}

.download-link a {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.download-link a:hover {
    background: #388e3c;
}

.error {
    color: #dc3232;
    padding: 10px;
    border: 1px solid #ffb8b8;
    background-color: #fff8f8;
    border-radius: 4px;
    margin: 1rem 0;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .ld-report-formatter {
        max-width: 100%;
        margin: 1rem;
    }
}