/*
Theme Name: Test Plugin Basic
Theme URI: https://example.com
Author: Tester
Author URI: https://example.com
Description: Minimal theme to test a WordPress plugin.
Version: 1.0
License: GPLv2
Text Domain: test-basic
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

.site-header {
    background: #222;
    color: #fff;
    padding: 20px;
}

.site-header h1 {
    margin: 0;
}

.site-header p {
    margin: 5px 0 0;
}

/* ===== Navigation Menu Styles ===== */
.main-navigation {
    margin-top: 15px;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    background: #444;
}

/* ===== Content Area ===== */
.site-content {
    padding: 20px;
}

.site-footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
}

.post {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}