/* 截图功能样式 */
.screenshot-section {
    text-align: center;
    padding: 20px 0;
}

#screenshot-btn {
    padding: 14px 35px;
    background: #d4d4d4;
        /* background: linear-gradient(54deg, #9e5151 0%, #297692 100%); */
    color: #5e5e5e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(77, 77, 77, 0.3);
}

#screenshot-btn:hover {
    color: #fff;
    background: #07815a;
        /* background: linear-gradient(54deg, #676161 0%, #297692 100%); */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 82, 82, 0.4);
}

#screenshot-btn:disabled {
     color: #fff;
    background: #119955;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#screenshot-status {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    min-height: 20px;
}

#screenshot-status.error {
    color: #ff4d4f;
}

#screenshot-status.success {
    color: #52c41a;
}
