.preset-image {
    width: 90%;
    height: auto;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 4px;
    transition: 0.2s ease;
    display: inline-block;
}
 
.preset-image:hover {
    border: 2px solid #aaa;
}
 
.preset-image.selected {
    border: 2px solid #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}