/* Custom styles from the original HTML file */
.font-sarabun { font-family: 'Sarabun', sans-serif; }
.bg-primary-yellow { background-color: #FFD700; }
.text-primary-yellow { color: #FFD700; }
.border-primary-yellow { border-color: #FFD700; }
.hover\:bg-yellow-500:hover { background-color: #EAB308; }
.focus\:border-primary-yellow:focus { border-color: #FFD700; }
.bg-secondary-yellow { background-color: #FFF8DC; }
.bg-accent-yellow { background-color: #FFEB3B; }

/* Notification style */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: #FFD700;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
}
.notification.show {
    transform: translateX(0);
}

/* Like button animation */
.like-btn {
    transition: transform 0.2s ease;
}