﻿/* Focus styling */
:focus {
    border: 2px solid black !important;
    border-radius: 3px !important;
    transition: border-radius 0.2s ease;
    outline: 2px !important;
}

/* Validation summary list */
.validation-summary ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.validation-summary li {
    color: red;
    margin-bottom: 5px;
}

/* Highlight fields with errors */
input[aria-describedby*="error-"] {
    border-color: red;
    background-color: #fff0f0;
}

ul.no-bullets {
    list-style-type: none; /* Removes the bullets */
    padding: 0; /* Removes default left indentation */
    margin: 0; /* Removes default top/bottom spacing */
}