* {
/*     margin: 0; */
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif; /* Default font for the page */
}

.taxonomy-comparison{
	 background: linear-gradient(to right, #EEEBFF, #fff);
}

/* ----------------------------------------------
   Header and Taxonomy Section Styles
   ---------------------------------------------- */

/* Comparison Taxonomy Selector */
.comparison-taxonomy-selector {
    width: 100%;
    margin: 15px 0;
    background-color: #fff;
}
.comparison-taxonomy-selector option:hover {
    background-color: red;
}

/* Software Comparison Search Form */
.custom-search-form {
    margin: auto;
    padding: 2%;
    max-width: 1600px; 
    width: 100%; 
    box-sizing: border-box; 
	
}

/* Software Comparison Search - Flexbox */
.software-comparison-search {
    width: 100%;
    display: flex;
	gap: 1%;
	position: relative;
    overflow: visible;
	flex-wrap: nowrap;
}
#add-input-button{
	padding: 5px;
	margin: 5px;
	float: right;
	background: white;
	border: 1px solid #8976FD;
	color: #8976FD;
	border-radius: 5px;
}

/* .software-comparison-search input {
    margin: auto;
    float: left;
} */
/* .software-comparison-search input {
    flex: 1;
    min-width: 0; 
} */



/* Input Containers - Flex Direction Column */
/* .input-container1, .input-container2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
} */


/* Base styles for all inputs */
.software-comparison-search [class^="input-container"] {
    flex: 1 1 0%; /* Equal growth, shrink, and 0 base width */
    min-width: 0; /* Prevents input from exceeding its container */
    height: 40px; /* Consistent height */
    box-sizing: border-box;
}

.software-comparison-search input {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    box-sizing: border-box;
	
}

/* Media query to handle potential overflow on smaller screens */
@media (max-width: 768px) {
    .software-comparison-search {
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }
    
    .software-comparison-search input {
        flex-basis: 100%; /* Stack vertically on small screens */
        margin-bottom: 10px;
    }
}





/* Spacing between input fields */
#software_input_1 {
/*     margin-right: 1%; */
}

#software_input_2 {
/*     margin-left: 1%; */
}

/* Suggestions Dropdown */
.suggestions-container {
    position: absolute;
    top: 100%;
    width: 100%; 
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none; 
}

.input-container1 .software-search-input:not(:placeholder-shown) + .suggestions-container {
    display: block;
}

.input-container2 .software-search-input:not(:placeholder-shown) + .suggestions-container {
    display: block; 
}
.input-container3 .software-search-input:not(:placeholder-shown) + .suggestions-container {
    display: block;
}

.input-container4 .software-search-input:not(:placeholder-shown) + .suggestions-container {
    display: block; 
}
.software-comparison-search > .software-alternatives-search:not(:placeholder-shown) + .suggestions-container {
    display: block;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Comparison Button Styling */
.compare_button {
    display: flex;
    width: 100%;
    background-color: #8976FD;
    color: #fff;
    margin: 15px 0;
    justify-content: center;
    padding: 10px;
    font-size: larger;
    border: 1px solid #8976FD;
}

.compare_button:hover {
    background-color: #9C87F5;
    border: 1px solid #8976FD;
}

/* ----------------------------------------------
   Media Queries for Responsiveness
   ---------------------------------------------- */

/* Small Screens (max-width 1025px) */
@media (max-width: 1025px) {
    .custom-search-form {
        /* Adjust width or styling here */
    }
}

/* Medium Screens (max-width 768px) */
@media (max-width: 768px) {
    .custom-search-form {
        /* Adjust width or styling here */
    }

    /* Adjust input width for mobile */
    .software-comparison-search input {
        width: 100%;
        margin: 10px 0;
    }

    /* Adjust button margin for mobile */
    .compare_button {
        margin: 15px 0;
    }
}

/* ----------------------------------------------
   Comparison Layout and Software Cards
   ---------------------------------------------- */

/* Software Comparison Layout - Flexbox */
.software-comparison {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Software Card Container */
.software {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    float: left;
}

/* Star Rating Styles */
.star {
/*     font-size: 20px; */
}

.star.full, .star.fractional {
    color: gold;
}

.star.empty {
    color: #ccc;
}

/* Software Card Layout on Small Screens */
@media (max-width: 768px) {
    .software {
        width: 100%;
    }
}

/* ----------------------------------------------
   Dropdown Section Styles
   ---------------------------------------------- */

/* Dropdown Toggle Styling */
.dropdown-toggle {
    background-color: #1abc9c;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-toggle:hover {
    background-color: #fff;
    border: 1px solid #1abc9c;
    color: #1abc9c;
}

/* Dropdown Content Styling */
.dropdown-content {
    display: none;
/*     border: 1px solid #ddd; */
    border-top: none;
}

@media (min-width: 768px) {
    .dropdown-content {
        display: block;
    }
}

/* ----------------------------------------------
   Pros and Cons Section Styles
   ---------------------------------------------- */

.pros h5{
	color: green;
}
.cons h5{
	color: red;
}

.pros, .cons {
    margin-top: 10px;
}

.pros h5, .cons h5 {
    margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #C4C6CC;
}

.pros ul, .cons ul {
    list-style-type: none;
    padding-left: 0;
}

.pros li:before, .cons li:before {
    content: "• ";
    color: green; /* Color for Pros */
}

.cons li:before {
    color: #dc3545; /* Color for Cons */
}

/* ----------------------------------------------
   Image and Comparison Sections
   ---------------------------------------------- */

/* Comparison Section and Content Styles */
.comparison-img {
    height: 120px;
    max-width: 100%;
}

/* Content Section */
.content-section {
    width: 100%;
    max-width: 1600px;
    margin: auto;
	padding: 0 2%;
	cursor: pointer;
}
.content-section h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Comparison Header */
.comparison-headers {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-bottom: 1px solid #DDDEDF;
}
.comparison-headers h2, .comparison-headers h3{
	padding: 8px 0 8px 0;
}

.comparison-headers:hover {
    color: #9C87F5;
    border-bottom: 1px solid #9C87F5;
}

/* Comparison Text */
.comparison-text {
    display: none;
	width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Toggle for Introduction */
.introduction{
	padding: 0 2%;
	width: 100%;
    max-width: 1600px;
    margin: 0 auto;
	    cursor: pointer;
}
.toggle-intro {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-bottom: 1px solid #DDDEDF;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-intro:hover {
    color: #9C87F5;
    border-bottom: 1px solid #9C87F5;
}

.intro-text {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-bottom: 1px solid #DDDEDF;
	padding: 20px;
}

/* Trending Alternatives Section */
.trending-alternatives-text-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
	padding: 0 2%;
	cursor: pointer;
}
.trending-alternatives h2 { 
    border-bottom: 1px solid #DDDEDF;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.trending-alternatives h2:hover {
    color: #9C87F5;
    border-bottom: 1px solid #9C87F5;
}

.trending-alternatives p {
	display: none;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Default state shows the plus */
.content-section h2::after,
.trending-alternatives-text-container h2::after,
.toggle-intro::after {
    content: "+"; 
    font-size: 24px;
    color: #000;
    margin-left: 10px;
    transition: none; /* Remove animation */
}

/* When active, show a minus */
.content-section h2.active::after,
.trending-alternatives-text-container h2.active::after,
.toggle-intro.active::after {
    content: "–";
}

/* ----------------------------------------------
   Miscellaneous Styles
   ---------------------------------------------- */

/* Accordion Styling */
.accordion {
    background-color: #8976FD;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: 1px solid #8976FD;
    text-align: left;
    font-size: 15px;
    transition: 0.4s;
	display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.accordion:hover {
    background-color: #9C87F5;
    font-weight: 600;
    border: 1px solid #8976FD;
}
.accordion.activeborder{
	border-radius: 7px 7px 0 0 !important;
}
.panel{
	margin-bottom: 0.7%;
}
/*----------------------------------------
  Softgrid styles
  ---------------------------------------*/
.title-software-compare{
 	width:100%;
	max-width:1600px;
	margin: 0 auto;
	padding: 2% 2% 0 2%;
	
}

#software-grid {
    max-width: 1600px; 
    width: 100%; 
    margin: 0 auto; 
    box-sizing: border-box; 
}

.taxonomy-comparison #software-grid{
	display: grid;
    gap: 1%;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
	margin-bottom:2%;
}

@media (max-width: 768px) {
    .taxonomy-comparison #software-grid {
        grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
    }
}
@media (max-width: 425px) {
    .taxonomy-comparison #software-grid {
        grid-template-columns: repeat(auto-fill, minmax(95%, 1fr));
    }
}
/*----------------------------------------
  Itemscope styles
  ---------------------------------------*/

.itemscope-container{
 	max-width: 1600px; 
    width: 100%; 
    margin: 0 auto; 
    box-sizing: border-box; 
	padding: 2%;
}

/*------------------------------
 Compare-Business-Management-solutions
-------------------------------*/

/* General container styles */
.software-comparison-container {
    display: flex;
    flex-direction: column;
    align-items: center;
	max-width:1600px;
	margin: 30px auto;
	box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Main comparison section */
.comparison-main-section {
	width:100%;
    justify-content: space-around;
    gap: 20px;
    border-radius: 10px;
    background-color: #fff;
/* 	margin-bottom: 10px; */
}
.comparison-main{
	width:100%;
	display:flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center; 
	padding: 20px;
}

.title-softwares{
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #8976FD !important;
	color: #fff !important;
/*     border: 1px solid #ccc; */
    border-radius: 5px 5px 0 0;
	cursor: default;
	font-size: 24px;
}
.software {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 300px; 
	flex: 1 1 auto; /
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center; 
	padding: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.software:hover{
	transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.comparison-img {
/* 	width: 25%; */
	height: auto;
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
}

.software h2 {
	font-size: 18px;
	margin: 10px 0;
}

.software p {
	color: #666;
	margin-bottom: 15px;

}

.software a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #8976FD;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
	border: 1px solid #8976FD;
	font-weight: 600;
}

.software a:hover {
    background-color: #9C87F5;
	border: 1px solid #8976FD;
}
a.btn.btn-secondary{
	background: white;
	color: #9C87F5;
}
a.btn.btn-secondary:hover{
	background: #DDDDDD;
}

/* Dropdown sections */
.comparison-section {
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
/* 	margin-bottom: 10px; */
}

.comparison-section h4 {
/*     font-size: 2rem;
    margin-bottom: 10px;
    text-align: center; */
	color: #8976FD;
}

.dropdown {
}

.dropdown-toggle {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #8976FD !important;
	color: #fff !important;
    border: 1px solid #ccc;
    cursor: pointer;
}
.comparison-columns {
    display: flex;
    justify-content: space-between;
}
.software-column {
    flex: 1;
    padding: 15px;
    background-color: #f9f9f9;
/*     border: 1px solid #ddd; */
	border-radius: 0 0 7px 7px;
}
.software-column h4 {
/*     margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center; */
}
.software-column p {
	font-size: 17px;
    margin: 0 0 0 1em;
}

.dropdown-toggle:hover {
    background-color: #ddd;
}

.dropdown-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Ratings section */
.ratings p {
    display: flex;
	justify-content: space-between;
    margin-bottom: 5px;
	font-size: 17px;
	width: 100%;
}

.ratings span.star {
    font-size: 20px;
    color: gold;
}

.star-container-compare{
	align-content: center;
}

/* Pricing section */
.pricing .package{
/*     border: 1px solid #ccc; */
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background: white;
}

/* Implementation section */
.implementation p {
    display: flex;
    margin-bottom: 5px;
/*     font-size: 1rem; */
	justify-content:space-between;
}

.implementation .icon {
/*     font-size: 1.2rem; */
    color: green;
}

/* .implementation .icon.cross {
    color: red;
} */
span.icon.cross,
.icon.cross,
[class="icon cross"] {
    color: #ef4444 !important;
}

/* Support and Training sections */
.support, .training {
/* 	display:flex; */
	justify-content:space-between;
	border: none !important;
	padding: 0 !important;
}

.support p, .training p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

/* Pros and Cons sections */
.pros-cons ul {
/*     margin: 0; */
    padding: 0;
    list-style: none;
}

.pros-cons ul li {
    margin-bottom: 5px;
/*     font-size: 0.9rem; */
}














