/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
.sketchy-image {
    position: relative;
    padding: 6px;
}

.sketchy-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgb(6 182 212);
    border-radius: 2rem;
    transform: rotate(-3deg);
    /*transition: scale 0.3s ease; !* smooth color transition *!*/
}

.sketchy-image:hover::before {
    border-width: 2px;
    /*scale: 110%;*/
}

.sketchy-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #000;
    border-radius: 2rem;
    /*transform: rotate(1deg);*/
    /*transition: border 0.3s ease; !* smooth color transition *!*/
}

.sketchy-image:hover::after {
    border-color: blueviolet; /* or whatever color you want */
    border-width: 2px;
    /*scale: 105%;*/
}

.sketchy-image img {
    position: relative;
    border-radius: 2rem;
    z-index: 1;
}
