/* Animation Keyframes */
@keyframes ncp-skeleton-loading {
    0% { background-color: #f0f0f0; }
    50% { background-color: #e0e0e0; }
    100% { background-color: #f0f0f0; }
}

/* Class áp dụng cho Skeleton */
.ncp-skeleton {
    animation: ncp-skeleton-loading 1.5s infinite ease-in-out;
    border-radius: 4px;
    width: 100%;
    min-height: 40px; /* Chiều cao mặc định của select box */
    display: block;
    margin-bottom: 8px;
    border: none !important;
    pointer-events: none; /* Không cho click */
}

/* Skeleton cho Gallery */
.ncp-skeleton-gallery {
    min-height: 100px;
    background: #f9f9f9;
    border: 2px dashed #ddd;
}