/*
Theme Name: The Device Bank
Theme URI: https://thedevicebank.com
Author: The Device Bank Team
Author URI: https://thedevicebank.com
Description: Custom theme for Number to Words Converter tool.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thedevicebank
*/

/* ===== Global Styles ===== */
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* ===== Header ===== */
.site-header {
  background: #1a365d;
  color: white;
  padding: 25px 0;
  text-align: center;
}

.site-title {
  margin: 0;
  font-size: 2.2rem;
}

.site-title a {
  color: white;
  text-decoration: none;
}

/* ===== Main Content ===== */
.main-content {
  min-height: 70vh;
  padding: 40px 20px;
}

.converter-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== Footer ===== */
.site-footer {
  background: #1a365d;
  color: #e2e8f0;
  text-align: center;
  padding: 30px 0;
}

.copyright {
  font-size: 0.9rem;
}

.copyright a {
  color: #4fd1c5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-title { font-size: 1.8rem; }
  .converter-container { padding: 20px; }
}