/*
Theme Name: KB Custom Theme
Theme URI: https://github.com/i-planet/kb-theme
Description: 專為知識庫設計的客製化主題 (含 Software CPT)
Version: 2.0.1
Author: DevOps Team
Author URI: https://i-planet.com
Text Domain: flavor-flavor-flavor-flavor-flavor-flavor-kb
Domain Path: /languages
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
*/

/* Reset & Basic */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  /* background: #f4f6f8; */
  margin: 0;
  padding: 0;
}

/* Download Button */
.sw-action-area {
  text-align: center;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
}
.sw-btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #28a745; // 成功綠
  color: white !important;
  padding: 12px 35px;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}
.sw-btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
  background: #218838;
  text-decoration: none;
}
.sw-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 10px;
}
