/* Custom styles for UNT Softball Camp */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #00853E;
    outline-offset: 2px;
}

/* Smooth transitions */
a,
button {
    transition: all 0.2s ease-in-out;
}
