/*
Theme Name: codingwebio
Theme URI: https://codingweb.io
Author: hris.space
Author URI: https://codingweb.io
Description: A modern, lightweight, and SEO-friendly News & Magazine FSE Block Theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Tags: news, magazine, block-theme, full-site-editing, responsive-layout, seo-friendly
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codingwebio
*/

/* 
   NOTE: This theme uses Tailwind CSS via CDN for styling. 
   Most styles are handled by utility classes in the HTML templates.
   This file contains minimal overrides for WordPress specific blocks.
*/

/* Fix for Tailwind Preflight vs WordPress Admin Bar */
html {
    margin-top: 0 !important;
}

/* Tailwind Search Block Override */
.search-block-tailwind .wp-block-search__input {
    @apply bg-slate-100 dark:bg-slate-800 border-none rounded-full px-4 py-2 text-sm w-64 focus:ring-2 focus:ring-primary outline-none;
}

.search-block-tailwind .wp-block-search__button {
    @apply bg-primary text-white rounded-full p-2 ml-2 hover:bg-blue-700 transition-colors;
}

/* Navigation Links */
.wp-block-navigation .wp-block-navigation-item__content {
    @apply hover:text-primary transition-colors;
}

/* Ensure images behave */
img {
    max-width: 100%;
    height: auto;
}