/* === 1. Vue 防闪烁 === */
[v-cloak] {
    display: none !important;
}

/* === 2. Loading 遮罩层 === */
#app-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease-out;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6A31F5; /* VetMew Purple */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 15px;
    color: #6A31F5;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

/* === 3. 工具类: 隐藏滚动条 === */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* === 4. 工具类: 搜索框阴影 === */
.search-shadow {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}