/*
Theme Name: AxiomCare Theme
Theme URI: https://example.com/
Description: A custom child theme for the Twenty Twenty-Five theme.
Author: Your Name
Author URI: https://yourwebsite.com/
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/
/* Blog Page Styling */
/* Sidebar Styling */
/*PHP styling*/
.site-header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.content-area {
  flex: 2;
}

.sidebar {
  flex: 1;
  padding-left: 20px;
}

.widget {
  margin-bottom: 20px;
}

body {
  background-color: #F3F3F3;
}

.main-content {
  min-height: 70vh;
}

a:hover {
  color: #7D277D;
}

.btn-primary {
  background-color: #7D277D;
  border: #7D277D;
}
.btn-primary:hover {
  background-color: #000 !important;
  border: #000;
  color: #fff;
}
.btn-primary a {
  color: #fff;
  text-decoration: none;
}
.btn-primary a:hover {
  color: #fff;
}

.navbar {
  border-bottom: 12px solid #7D277D;
}

.menu-item a {
  margin: 0px 15px;
  font-weight: 400;
  color: #000;
}

footer {
  background-color: #000;
  padding: 30px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .container {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.card {
  border-radius: 1px;
  border: none;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.category-container .card-body {
  min-height: 250px;
}

.pagination-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

aside .home-sidebar {
  padding: 0px !important;
  background-color: #fff !important;
}
aside .home-sidebar ul li {
  padding: 10px;
  border-bottom: #ccc 1px solid;
}
aside .home-sidebar ul li:last-child {
  border: none;
}
aside .home-sidebar ul li a {
  color: #424242;
  text-decoration: none;
}
aside .home-sidebar h4 {
  background-color: #7D277D;
  padding: 15px;
  color: #fff;
}
aside .home-sidebar .card-header {
  background-color: #7D277D;
  padding: 15px;
  color: #fff;
}/*# sourceMappingURL=style.css.map */