/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B5A2B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d4522;
}

/* Animation for buttons */
button {
    transition: all 0.2s ease-in-out;
}

/* Form input focus styles */
input:focus {
    outline: none;
    border-color: #8B5A2B;
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}