/*
Theme Name: Nepsys news (Nabintech)
Theme URI: http://nabinsharma.com.np
Author: nabin sharma
Author URI: https://nabinsharma.com.np
version: 3.6.1
Description:
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: nepsyscode
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

*/


:root {
  /* Light theme variables */
	--main-color : #007B5F !important;
  --bg-color: #ffffff;
  --text-color: #333333;
  --header-bg: #f8f9fa;
  --border-color: #dee2e6;
  --link-color:#007B5F ;
  --card-bg: #ffffff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

[data-theme="dark"] {
  /* Dark theme variables */
  --bg-color: #1a1a1a;
  --text-color: #e0e0e0;
  --header-bg: #2d2d2d;
  --border-color: #404040;
  --link-color: #007B5F ;
  --card-bg: #2d2d2d;
  --shadow: 0 2px 10px rgba(0,0,0,0.3);
}

* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.header {  background-color: var(--header-bg);  padding: 1rem 0;  border-bottom: 1px solid var(--border-color);  box-shadow: var(--shadow);}

.container {  max-width: 1200px; margin: 0 auto;  padding: 0 20px;}

.header-content {  display: flex;  justify-content: space-between;  align-items: center;}

.theme-switcher {  display: flex;  align-items: center;  gap: 10px;}
.th-switch {  position: relative;  display: inline-block;  width: 60px;  height: 34px;}
.th-switch input {  opacity: 0;  width: 0;  height: 0;}
.th-slider {  position: absolute;  cursor: pointer;  top: 0;  left: 0;  right: 0;  bottom: 0;  background-color: #ccc; transition: .4s;  border-radius: 34px;}
.th-slider:before {  position: absolute;  content: "";  height: 26px;  width: 26px;  left: 4px;  bottom: 4px;  background-color: white;  transition: .4s;  border-radius: 50%;}
input:checked + .th-slider {  background-color: #2196F3;}
input:checked + .th-slider:before { transform: translateX(26px);}

.main-content {
  padding: 2rem 0;
}
.site-branding {}
.site-branding img{height: 45px;    width: 100%;}
.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--header-bg);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}