/*
 Theme Name: Pharmacy Theme
 Theme URI: http://example.com/pharmacy-theme
 Author: Your Name
 Author URI: http://example.com
 Description: A WordPress theme for a pharmacy.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags: pharmacy, medical, health
 Text Domain: pharmacy-theme
*/

/* Add your custom styles here */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

header {
    background-color: #004085;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer {
    background-color: #004085;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.sidebar {
    background-color: #e9ecef;
    padding: 10px;
}

.product-listing {
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    width: 30%;
    margin: 10px;
    padding: 10px;
    border: 1px solid #dee2e6;
    background-color: white;
    text-align: center;
}
