/* ==========================================================================
   快乐农场 - 通用工具、组件与动画 (utils.css)
   ========================================================================== */

/* ==========================================================================
   1. 基础表单组件 (Buttons & Inputs)
   ========================================================================== */

/* 基础按钮全局样式 */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background-color 0.2s;
}

button:hover { 
    background-color: #0056b3; 
}

button:disabled { 
    background-color: #ccc; 
    cursor: not-allowed; 
}

/* 输入框获取焦点时的全局高亮 */
input[type="number"]:focus {
    outline: none;
    border-color: #007bff !important;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

/* 隐藏 Chrome/Safari 数字输入框默认的上下微调小箭头 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==========================================================================
   2. 全局消息提示系统 (Toast Notifications)
   ========================================================================== */

/* 提示容器：屏幕顶部中央浮动 */
#toast-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 单条提示气泡基础样式 */
.toast {
    background: rgba(40, 40, 40, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* 自动播放进入和退出动画 */
    animation: fadeInOut 2.5s forwards; 
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 提示气泡的状态特化 */
.toast.success { background: rgba(40, 167, 69, 0.95); }
.toast.error { background: rgba(220, 53, 69, 0.95); }

/* ==========================================================================
   3. 全局动画关键帧 (Global Keyframes)
   ========================================================================== */

/* 提示条弹出与消散动画 */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* 呼吸/脉冲动画 (用于成熟的作物、可领取的任务按钮等) */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   4. 杂项辅助类 (Misc Helpers)
   ========================================================================== */

/* 缺种子的警告提示框 */
#no-seed-hint {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.9em;
}