body {
    font-family: 'Noto Sans Thai', sans-serif;
    background-color: #f3f4f6;
    -webkit-tap-highlight-color: transparent;
}

.animate-in {
    animation: fade-in 0.3s ease-out;
}

.animate-pop {
    animation: pop-in 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-pulse-slow {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pop-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

input,
select,
textarea {
    font-size: 16px !important;
}

.input-modern {
    width: 100%;
    background-color: white;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    outline: none;
    transition: all 0.2s;
    color: #374151;
}

.input-modern:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.label-modern {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.375rem;
}

.bottom-nav-curve {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}