/*
Theme Name: Mohanad Blog Theme
Theme URI: https://example.com/
Author: Mohanad
Author URI: https://example.com/
Description: A simple blog theme based on Bootstrap 5.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mohanad-blog-theme
Tags: blog, bootstrap, responsive
*/

a
{
    color: black;
    text-decoration: none;
}

a:hover
{
    color: #131111;
    text-decoration: underline;
}



#page-menu {
    display: flex;
    justify-content: center; /* Or: flex-start / flex-end */
   
    padding: 10px 0;
    list-style: none;
    margin: 0;
}

#page-menu li {
    margin: 0 15px;
}

#page-menu li a {
    text-decoration: none;
    color: #f9f9f9; /* Change to match your theme */
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

#page-menu li a:hover {
    color: white; /* Bootstrap primary color */
}