/* app.css */

/* Custom focus styles */
input:focus, textarea:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Custom scrollbar for a sleeker look */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #fcfcfc;
}
::-webkit-scrollbar-thumb {
    background: #e0e0e0;
}
::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* Alpine.js Cloak */
[x-cloak] { display: none !important; }

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 400ms;
}

/* Custom shadow */
.sleek-shadow {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

/* Typography tweaks */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.04em;
}

/* Selection color */
::selection {
    background: #000000;
    color: #ffffff;
}
