/*
Theme Name: ApproveThis KB Theme
Theme URI: 
Author: codesavory.com
Author URI: codesavory.com
Description: This is the admin theme for BasePress
Version: 2.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: 
*/


/**
 * Table of Contents
 *
 * 1.0 - Clearings and main styles
 * 2.0 - Knowledge Bases
 * 3.0 - Page Header
 * 4.0 - Sections
 * 5.0 - Sections List Type
 * 6.0 - Sections Box Type
 * 7.0 - Content Area
 * 8.0 - Post Meta data
 * 9.0 - Breadcrumbs
 * 10.0 - Search Bar
 * 11.0 - Search Results
 * 12.0 - Table of Contents
 * 13.0 - Votes
 * 14.0 - Pagination
 * 15.0 - Previous and Next articles
 * 16.0 - Comments
 * 17.0 - Sidebar
 * 18.0 - Accordion Navigation Widget
 * 19.0 - Table of Contents Widget
 * 20.0 - Buttons
 * 21.0 - Notices
 * 22.0 - Grid Layout
 */



/**
 * 1.0 - Clearings and main styles
 */


 @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
 
.bpress-clear:before,
.bpress-clear:after {
	content:' ';
	display:table;
}

.bpress-clear:after {
	clear:both;
}

.bpress-clear {
	*zoom:1;
}

.bpress-wrap{
	position: relative;
	padding: 0 20px;
	text-align: left;
	box-sizing: border-box;
}

.bpress-wrap *{
	box-sizing: border-box;
	line-height: 1.5;
	letter-spacing: normal;
}

.bpress-wrap:after{
	display: table;
	clear: both;
	content: '';
}

.bpress-content-wrap{
	width: 100%;
	max-width: 1200px;
	margin: 1rem auto;
	padding: 1rem 2rem;
}

.bpress-crumbs-wrap > .bpress-content-wrap{
	padding: 0rem 2rem;
}

.bpress-content-wrap:after{
	display: table;
	clear: both;
	content: '';
}

.bpress-wrap h1,
.bpress-wrap h2,
.bpress-wrap h3,
.bpress-wrap h4,
.bpress-wrap h5,
.bpress-wrap h6{
	margin: 3rem 0 .25rem 0;
}

.bpress-wrap h1:before,
.bpress-wrap h2:before,
.bpress-wrap h3:before,
.bpress-wrap h4:before,
.bpress-wrap h5:before,
.bpress-wrap h6:before{
	display: none !important;
}

.bpress-wrap h1 {
    font-size: 2em; /* Matches Tailwind's h1 size */
    font-weight: bold;
    color: #334E68; /* Gray 700 */
}

.bpress-wrap h2 {
    font-size: 1.6em; /* Reduced size */
	margin: 4rem 0 .25rem 0;
    color: #334E68; /* Gray 700 */
}

.bpress-wrap h3 {
    font-size: 1.4em; /* Reduced size */
    color: #486581; /* Gray 600 */
}

.bpress-wrap h4 {
    font-size: 1.2em; /* Reduced size */
    color: #627D98; /* Gray 500 */
}

.bpress-wrap h5 {
    font-size: 1em; /* Reduced size */
    color: #BCCCDC; /* Gray 200 */
}

.bpress-wrap h6 {
    font-size: 0.9em; /* Reduced size */
    color: #D9E2EC; /* Gray 100 */
}

.bpress-heading{
	position: relative;
	line-height: 1.5;
	color: inherit;
}

.bpress-single-section .bpress-heading{
	font-size: 1.8em;
	font-weight: bold;
}

.bpress-section .bpress-heading{
	font-size: 1.3em;
	font-weight: bold;
}

.bpress-post-link .bpress-heading{
	font-size: 1.1em;
	font-weight: normal;
}

.bpress-post-link.search .bpress-heading{
	margin-bottom: 0.5em;
	font-weight: bold;
}


.bpress-heading.show-icon{
	padding-left: 1.5em;
}

.bpress-heading h1,
.bpress-heading h2,
.bpress-heading h3,
.bpress-heading a{
	margin: 0 0 0.5em;
	padding: 0;
	font-size: inherit !important;
	line-height: inherit !important;
	color: inherit !important;
	text-decoration: none !important;
	font-weight: inherit !important;
}

.bpress-heading h1{
	font-weight: bold;
}

.bpress-heading span[class^="bp-"],
.bpress-heading .bpress-heading-icon{
	position: absolute;
	width: 1.4em;
	left: 0;
	color: #808080;
	line-height: inherit !important;
	text-align: center;
}

.bpress-heading span[class^="bp-"].colored,
.bpress-heading .bpress-heading-icon.colored{
	color: #27AB83;
}


/**
 * 2.0 - Knowledge Bases
 */

.bpress-product,
.bpress-kb{
	position: relative;
	padding: 20px 20px 4em;
	border: 1px solid #a7f3d0; /* Approve Light */
	border-radius: 3px;
	background-color: #fff;
	box-shadow: 5px 5px 45px rgba(6, 95, 70, 0.08); /* Approve Darkest with opacity */
	cursor: pointer;
}

.bpress-product:hover,
.bpress-kb:hover{
	color: inherit;
	border: 1px solid #0e9e6e; /* Approve Dark */
}

.bpress-product a.bpress-product-link,
.bpress-product a.bpress-product-link:hover,
.bpress-kb a.bpress-kb-link,
.bpress-kb a.bpress-kb-link:hover{
	color: inherit !important;
	text-decoration: none !important;
}

.bpress-product .bpress-product-title,
.bpress-kb .bpress-kb-title{
	margin: 0 0 0.25em;
	padding: 0;
	font-size: 1.3em;
	color: #065f46; /* Approve Darkest */
}

.bpress-product .bpress-product-image,
.bpress-kb .bpress-kb-image{
	display: block;
	max-width: 100%;
	margin: 0 auto 20px;
}



/**
 * 3.0 Page Header
 */

.bpress-page-header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0e9e6e, #065f46); /* Gradient using approve colors */
  background-size: cover;
  background-position: center;
  font-family: 'Nunito', sans-serif;
  color: #ffffff; /* Increased contrast for text */
}

.bpress-page-header header{
	font-size: 1.3em;
	text-align: center;
}

.bpress-product-header,
.bpress-kb-header{
	color: #f2f2f2;
	text-align: center;
}

.bpress-page-header h1,
.bpress-page-header h2{
	font-size: 2em;
	color: #f2f2f2;
}

.bpress-page-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #065f46; /* Approve Light */
  font-size: inherit;
  font-family: 'Nunito', sans-serif;
}


/**
 * 4.0 - Sections
 */

.bpress-section{
	position: relative;
	margin-bottom: 2rem;
	padding: 2rem;
	border-radius: 3px;
	border: 1px solid #BCCCDC; /* gray.200 */

	background-color: #fff;
	box-shadow: 0 0 45px rgba(6, 95, 70, 0.08); /* Approve Darkest with opacity */
	font-family: 'Nunito', sans-serif;
}

.bpress-section:hover{
	border: 1px solid #BCCCDC; /* gray.200 */
}

.bpress-single-section{
	margin-bottom: 3em;
}



/**
 * 5.0 - Sections List Type
 */


.bpress-post-count{
	display: inline-block;
	position: absolute;
	right: 15px;
	top: -15px;
	background-color: #065f46; /* brand-dark.700 */
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #F0F4F8; /* gray.50 */
	font-size: 13px;
	font-weight: normal;
	text-align: center;
	line-height: 30px;
	font-family: 'Nunito', sans-serif;
}

.bpress-section-list,
.bpress-post-list{
	margin: 0;
	padding: 0;
}

.bpress-post-link{
	position: relative;
	margin: 0;
	list-style-type: none;
	font-size: 1em;
	line-height: 1.5;
	font-family: 'Nunito', sans-serif;
	color: #065f46; /* Approve Darkest */
}


.bpress-post-link:last-child{
	border-bottom: none;
	padding-bottom: 20px;
}

.bpress-post-link:hover{
	background-color: #F0F4F8; /* Light background for hover */
}

.bpress-post-link a,
.bpress-post-link a:hover{
	text-decoration: none;
	line-height: inherit;
	color: #065f46; /* Approve Darkest */
}

.bpress-post-link .bpress-heading h3{
	margin: 0;
}

.bpress-post-link.single-section:last-child{
	border-bottom: none;
}

.bpress-post-link.show-icon{
	padding-left: 2em;
}

.bpress-section a.bpress-viewall{
	display: block;
	position: absolute;
	bottom: 15px;
	margin-top: 3em;
	color: #11b981; /* Approve */
	text-decoration: none;
	font-family: 'Nunito', sans-serif;
}

.bpress-section a.bpress-viewall:hover{
	text-decoration: underline;
}



/**
 * 6.0 - Sections Box Type
 */

.bpress-section-boxed{
	position: relative;
	border: 1px solid #D9E2EC; /* gray.100 */
	border-radius: 3px;
	text-align: center;
	background-color: #fff;
	box-shadow: 5px 5px 45px rgba(16, 42, 67, 0.08); /* brand-dark.900 with opacity */
	font-family: 'Nunito', sans-serif;
}

.bpress-section-boxed:hover{
	border: 1px solid #BCCCDC; /* gray.200 */
}

.bpress-section-boxed > a{
	display: block;
	width: 100%;
	min-height: 280px;
	padding: 20px;
	text-decoration: none;
	overflow: hidden;
}

.bpress-section-boxed a:hover{
	text-decoration: none !important;
}

.bpress-section-boxed p{
	color: inherit;
	font-family: 'Nunito', sans-serif;
}

.bpress-section-boxed .bpress-section-icon{
	color: ##2680C2; /* blue.500 */
}

.bpress-section-boxed .bpress-section-icon{
	display: block;
	padding-top: 25px;
	font-size: 6em;
}

.bpress-section-image{
	max-width: 100%;
}

.bpress-section-boxed .bpress-section-title{
	margin: 2em 0 0.5em;
	color: #486581; /* brand-dark.600 */
	font-size: 1.3em;
	word-wrap: break-word;
	font-family: 'Nunito', sans-serif;
}

.bpress-section-list,
.bpress-post-list{
	margin: 0;
	padding: 0;
}

.bpress-section-boxed .bpress-viewall{
	display: block;
	margin-top: 1em;
	color: #065f46; 
	text-decoration: none;
	font-family: 'Nunito', sans-serif;
}

.bpress-section-boxed .bpress-viewall:hover{
	text-decoration: underline;
}


/**
 * 7.0 - Content Area
 */

.bpress-content-area{
	margin-bottom: 1em;
	font-family: 'Nunito', sans-serif;
}

.bpress-content-area.bpress-float-left{
	width: 100%;
	float: left;
}

.bpress-content-area.bpress-float-right{
	width: 100%;
	float: right;
}

.bpress-post-header{
	margin-bottom: 1.5em;
	font-family: 'Nunito', sans-serif;
}

.bpress-post-header h1{
	line-height: 1;
	margin-top: 0;
	font-family: 'Nunito', sans-serif;
}

.bpress-login{
	max-width: 350px;
	padding: 30px;
	margin: 50px auto;
	border: 1px solid #D9E2EC; /* gray.100 */
	border-radius: 3px;
	background-color: #F0F4F8; /* gray.50 */
	box-shadow: 0 0 45px rgba(16, 42, 67, 0.08); /* brand-dark.900 with opacity */
	font-family: 'Nunito', sans-serif;
}

.bpress-restricted-notice{
	margin: 2em 0;
	padding: 1em;
	border: 1px solid #D9E2EC; /* gray.100 */
	border-left: 5px solid #BA2525; /* red.500 */
	border-radius: 5px 3px 3px 5px;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(16, 42, 67, 0.08); /* brand-dark.900 with opacity */
	font-family: 'Nunito', sans-serif;
}

.article-teaser{
	position: relative;
}

.article-teaser:after{
	display: block;
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4em;
	max-height: 100%;
	background: linear-gradient(to top, #fff 0%, #fff0 100%);
}

.bpress-login label{
	display: block;
}

.bpress-login input[type="text"],
.bpress-login input[type="password"]{
	width: 100%;
	height: 3em;
	padding: 1em;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	font-size: inherit;
	line-height: inherit;
}

#bpress-restricted-login-submit[type="submit"]{
	margin-bottom: 10px;
	padding: 10px;
	border: none;
	border-radius: 4px;
	background-image: none;
	background-color: #1497b8;
	text-align: left;
	font-size: inherit;
	color: #fff;
}

/* Copy header anchor buttons */

.bpress-copy-link,
.bpress-copy-link:hover,
.bpress-copy-link:focus{
	position: relative;
	white-space: nowrap;
	margin-left: 0.25em;
	font-size: 0.75em;
	color: #17aacf;
}

.bpress-hl-tooltip{
	display: inline-block;
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	padding: 4px 8px;
	border-radius: 4px;
	background: #777;
	font-size: 11px;
	font-weight: normal;
	color: #fff;
}

.bpress-hl-tooltip.hidden{
	display: none;
}

.bpress-hl-tooltip:before{
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border-style: solid;
	border-color: #777 transparent transparent;
	border-width: 10px 5px;
}



/**
 *	8.0 Post Meta Data
 */

.bpress-post-meta{
	margin: -0.2rem 0 0;
	font-size: 0.8em;
	color: #777;
	font-family: 'Nunito', sans-serif;
}

.bpress-post-link .bpress-post-meta{
	float: right;
	margin: 0.5em 0 0;
}

.bpress-post-views,
.bpress-post-likes,
.bpress-post-dislikes,
.bpress-post-date{
	margin-right: 1em;
}

.bpress-post-views span,
.bpress-post-likes span,
.bpress-post-dislikes span,
.bpress-post-date span{
	margin-right: 5px;
}

.bpress-post-likes span{
	color: #64b473;
}

.bpress-post-dislikes span{
	color: #db5b57;
}


/**
 * 9.0 - Breadcrumbs
 */

.bpress-crumbs-wrap {
    background-color: #e8fcf2; /* Approve Light */
    padding: 2px 20px;
    border-radius: 5px;
	margin-bottom: 2rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bpress-crumbs {
    margin: 0;
    padding: 0;
}

.bpress-crumbs li {
    display: inline-block;
    margin-right: 10px; /* Space between items */
}

.bpress-crumbs li a {
    color: #205042; /* Approve Darkest */
    text-decoration: none;

}

.bpress-crumbs li a:hover {
    font-weight: bold; /* Bold text */

}

.bpress-breadcrumb-arrow {
    color: #777; /* Grey color for arrows */
    margin: 0 5px; /* Space around arrows */
}


/**
 * 10.0 - Search Bar
 */

.bpress-searchbar-wrap {
    text-align: center;
    margin: 20px 0;
}

.bpress-search-form {
    display: inline-flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bpress-search-field {
    padding: 10px;
    border: none;
    outline: none;
    width: 300px;
    font-size: 16px;
    border-radius: 8px 0 0 8px;
    box-sizing: border-box;
	color: #000;
	background-color: #fff!important;
}

.bpress-search-submit input[type="submit"] {
    background-color: #11b981; /* Approve */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0 8px 8px 0;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.bpress-search-submit input[type="submit"]:hover {
    background-color: #0e9e6e; /* Approve Dark */
}

.bpress-search-section {
	position: relative;
	padding: 1em;
	background-color: #F0F4F8; /* gray.50 */
	border-radius: 3px;
	font-family: 'Nunito', sans-serif;
}

.bpress-search-section.searching:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #11b981;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.bpress-search-suggest {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 100;
	background-color: #fff;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 3px 3px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	font-family: 'Nunito', sans-serif;
}

.bpress-search-suggest ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.bpress-search-suggest ul li {
	padding: 10px 15px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
}

.bpress-search-suggest ul li:last-child {
	border-bottom: none;
}

.bpress-search-suggest ul li:hover {
	background-color: #f9f9f9;
}

.bpress-search-suggest ul li b {
	font-weight: bold;
	color: #11b981;
}

/* Accordion Navigation */
.bpress-nav-section.active > .bpress-nav-item,
.bpress-nav-section .bpress-nav-item:hover,
.bpress-nav-article.active > .bpress-nav-item,
.bpress-nav-article .bpress-nav-item:hover {
	background: #F0F4F8; /* gray.50 */
	border-left: 1px solid #D9E2EC; /* gray.100 */
	padding-left: 6px;
	font-family: 'Nunito', sans-serif;
}



.bpress-nav-article > .bpress-nav-item{
	padding-left: 11px;
	border-left: 2px solid #D9E2EC dashed; /* gray.100 */
}

.bpress-nav-article.active .bpress-nav-item {
	padding-left: 8px;
	border-left: 5px solid #D9E2EC; /* gray.100 */

}

.children .bpress-nav-section.active > .bpress-nav-item,
.children .bpress-nav-section .bpress-nav-item:hover,
.children .bpress-nav-article.active > .bpress-nav-item,
.children .bpress-nav-article .bpress-nav-item:hover {
	border-left: 5px solid #D9E2EC; /* gray.100 */
	font-family: 'Nunito', sans-serif;
}

/* Buttons */
.bpress-btn-product,
.bpress-btn-kb {
	color: #fff !important;
	background-color: #27AB83; /* primary.500 */
	text-decoration: none !important;
	font-family: 'Nunito', sans-serif;
}

.bpress-btn-product:hover,
.bpress-btn-kb:hover {
	color: #fff !important;
	background-color: #199473; /* primary.600 */
	text-decoration: none !important;
	font-family: 'Nunito', sans-serif;
}

/* Notices */
.bpress-notice {
	border: 1px solid #27AB83; /* brand-dark.900 with opacity */
	font-family: 'Nunito', sans-serif;
}

.bpress-notice.is-style-default {
	background-color: #F0F4F8; /* gray.50 */	
	font-family: 'Nunito', sans-serif;
}

.bpress-notice.is-style-info {
	background-color: #2680C2; /* blue.500 */
	color: white;
	font-family: 'Nunito', sans-serif;
}

.bpress-notice.is-style-success {
	background-color: #27AB83; /* primary.500 */
	color: white;
	font-family: 'Nunito', sans-serif;
}

.bpress-notice.is-style-warning {
	background-color: #E9B949; /* yellow.500 */
	color: white;
	font-family: 'Nunito', sans-serif;
}

.bpress-notice.is-style-danger {
	background-color: #BA2525; /* red.500 */
	color: white;
	font-family: 'Nunito', sans-serif;
}

.bpress-grid{
	box-sizing: border-box;
	letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
	*letter-spacing: normal; /* reset IE < 8 */
	*word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
	text-rendering: optimizespeed;
}

.bpress-grid *{
	box-sizing: border-box;
	zoom: 1; *display: inline; /* IE < 8: fake inline-block */
	letter-spacing: normal;
	word-spacing: normal;
	/*vertical-align: top;*/
	text-rendering: auto;
}

.bpress-grid .bpress-section{
	border-radius: 8px!important;
}

.bpress-grid:before,
.bpress-grid:after{
	content: '';
	display: table;
}

.bpress-grid:after{
	content: '';
	display: inline-block;
	width: 100%;
}

.bpress-grid.bpress-align-right{
	text-align: right;
}

.bpress-col{
	display: inline-block;
	padding: 0 20px 10px 20px;
	vertical-align: top;
	
}


/* Media Queries */

@media (min-width:240px) {
	.bpress-grid {
		margin-left: 0;
		margin-right: 0;
	}
	
	.bpress-col-1,
	.bpress-col-2,
	.bpress-col-3,
	.bpress-col-4{
		width: 100%;
	}

	section {
		padding: 15px; /* Adjust padding for smaller screens */
	}
}

@media (min-width:768px) {
	.bpress-grid {
		margin-left: -10px;
		margin-right: -10px;
	}
	
	.bpress-col{
		padding: 0 10px 20px;
	}

	.bpress-col-1{
		width: 100%;
	}
	
	.bpress-col-2,
	.bpress-col-3,
	.bpress-col-4{
		width: 50%;
	}

	.bpress-content-area.bpress-float-left{
		width: 75%;
		padding-right: 30px;
	}

	.bpress-content-area.bpress-float-right{
		width: 75%;
		padding-left: 3rem;
	}

	.bpress-sidebar{
		width: 25%;
	}

	section {
		padding: 20px; /* Default padding for larger screens */
	}
}

@media (min-width:1024px){
	.bpress-wrap {
		padding: 0;
	}
}

@media (min-width:1280px){
	
	.bpress-col-1{
		width: 100%;
	}
	
	.bpress-col-2{
		width: 50%;
	}
	
	.bpress-col-3,
	.bpress-col-4{
		width: 33.333%;
	}
}

@media (min-width:1600px){
	
	.bpress-col-1{
		width: 100%;
	}
	
	.bpress-col-2{
		width: 50%;
	}
	
	.bpress-col-3{
		width: 33.333%;
	}
	
	.bpress-col-4{
		width: 25%;
	}
}

@media (max-width:768px) {
    .bpress-post-header,
    .bpress-post-meta,
    .bpress-article-content {
        padding-left: 15px;
        padding-right: 15px;
    }

	.bpress-main {
		padding-top: 20px;
		padding-bottom: 20px;
	}

}

/* Sidebar Navigation Styles */
.bpress-sidebar {
    padding: 0;
    background-color: transparent;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 20px;
}

.bpress-nav-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: transparent; /* Remove inner background */
    border-radius: 8px;
    box-shadow: none; /* Remove inner shadow */
}

.bpress-nav-section {
    margin-bottom: 15px;
    padding-bottom: 10px;
	border-bottom: 1px solid #D9E2EC; /* gray.100 */
}

.bpress-nav-item {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #065f46; /* Approve Darkest */
    font-family: 'Nunito', sans-serif;
}

.bpress-nav-widget-icon {
    margin-right: 8px;
    color: #808080; /* Darker green for icons */
}
.bpress-nav-widget-icon {
    color: inherit; /* Darker green for icons */
}




.bpress-nav-item-title {
    text-decoration: none;
    color: inherit;
}

.bpress-nav-item:hover .bpress-nav-item-title {
    /* text-decoration: underline; */
}

.children {
    margin-left: 20px;
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.bpress-nav-section.open .children {
    max-height: 500px;
}

.bpress-nav-section.closed .children {
    max-height: 0;
}

/* General Styles */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #f0f4f8; /* Light background */
    color: #2d3748; /* Dark text color */
}

/* Section Styles */
section {
    background-color: #ffffff;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 20px;
    padding: 20px;
}

/* Button Styles */
button, .btn {
    background-color: #27ab83; /* Primary green color */
    color: #ffffff;
    border: none;
    border-radius: 8px; /* Rounded button corners */
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #199473; /* Darker green on hover */
}

/* Card Styles */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Pricing Table Styles */
.pricing-table {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.pricing-table .price {
    font-size: 2em;
    color: #27ab83; /* Green color */
}

.pricing-table .features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-table .features li {
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
}

.pricing-table .features li:last-child {
    border-bottom: none;
}

p {
	margin-bottom: 1rem!important;
}

/* Footer Styles */
footer {
    background-color: #f0f4f8;
    text-align: center;
    color: #2d3748;
}

