/* ===== 狀態卡片優化 ===== */
.status-card {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: all 0.3s;
    margin-bottom: 20px;
    gap: 15px;
}

.status-card .status-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.status-card .status-content {
    flex: 1;
}

.status-card .status-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.status-card .status-detail {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* 不同狀態的卡片顏色 */
.status-in {
    background: #e8f5e9;
    border-color: #4CAF50;
}

.status-out {
    background: #fff3e0;
    border-color: #FF9800;
}

.status-completed {
    background: #e3f2fd;
    border-color: #2196F3;
}

/* ===== 按鈕狀態 ===== */
.btn-completed {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-completed:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hint {
    text-align: center;
    font-size: 14px;
    color: #2196F3;
    margin-top: 10px;
    font-weight: 500;
}

/* ===== 統計標籤 ===== */
.record-count {
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
}