body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9; /* Light background for the whole page */
}

.container {
    display: flex;
    min-height: 100vh; /* Ensure the container fills the viewport height */
}

.header {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* White background for header */
    color: #333; /* Dark text color */
    padding: 10px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow for header */
    z-index: 1000;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: cadetblue !important;
    margin-right: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.side-menu {
    height: 100vh;
    width: 250px;
    background-color: #ffffff; /* White background for the menu */
    color: #333; /* Dark text color */
    position: fixed;
    top: 50px; /* Adjust if header height changes */
    left: -250px;
    transition: left 0.3s ease;
    overflow-y: auto; /* Ensure scrolling if menu is too long */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow for menu */
    z-index: 999; /* Ensure it overlays content */
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li {
    padding: 15px;
    width: 100%;
}

.side-menu ul li a {
    color: #333; /* Dark text color */
    text-decoration: none;
}

.side-menu ul li a:hover {
    background-color: #f0f0f0; /* Light gray hover background */
}

.content {
    margin-left: 0;
    padding: 20px;
    margin-top: 50px; /* Adjust if header height changes */
    flex: 1;
    transition: margin-left 0.3s ease;
}

/* Desktop view */
@media (min-width: 768px) {
    .open-menu .side-menu {
        left: 0;
    }

    .open-menu .content {
        margin-left: 100px; /* Width of side menu */
    }
}

/* Mobile view */
@media (max-width: 767px) {
    .side-menu {
        left: -100%; /* Initially hidden off-screen */
        width: 100%;
    }

    .open-menu .side-menu {
        left: 0; /* Overlay on content */
    }

    .open-menu .content {
        /* No margin adjustment needed for mobile view */
    }
}

.trial{
    text-align: center;
    font-weight: bold;
    color: chocolate;
}
.selected-plan{
    background-color: rgb(225, 218, 218);
  
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
  
    transition: background-color 0.3s;
    display: inline-block;
}
.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0px;
}
.planamount{
    font-size:20px
}
.plans-container h1 {
    text-align: center;
    margin-bottom:10px;
    margin-top:10px;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.plan {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}

.plan h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.plan p {
    margin: 10px 0;
    color: #666;
}

.plan ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.plan ul li {
    margin: 10px 0;
    color: #333;
}

.select-plan {
    background-color: #0070f3; /* Accent color */
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-plan:hover {
    background-color: #005bb5; /* Darker shade for hover effect */
}
.productSettings .syncNowH1{
    margin: 2px 2px;
    padding: 2px 2px;
    font-size: 18px;
    color: blue;
    font-weight: bold;;
}
.collectionSyncTable > thead{
   font-size:12px
}
.collectionSyncTable > tbody > tr > td {
    padding: 3px 3px; 
}
.syncNow{
    background-color:cadetblue;
    color:white;
    padding: 5px 5px;
    font-size: 12px;
}

.prodTitleSearch{
   
    margin-left: 10px;
}

#productsTable_length{
    margin: 10px 20px;
}
#productsTable_filter{
    display:none;
}

.syncNow {
   position: relative;
  position: relative; 
    width: 150px;
    height: 40px; 
    padding: 0; 
    font-size: 16px; 
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    cursor: pointer; /* Change cursor to pointer */
   background-color:cadetblue;
    color:white;
    border: none; /* Remove border */
    border-radius: 4px; /* Rounded corners */
}

.spinner {
    font-size: 1.5em;
    display: none; 
     width: 20px; /* Spinner width */
    height: 20px; /* Spinner height */
    border: 4px solid rgba(255, 255, 255, 0.6); /* Spinner border */
    border-top: 4px solid white; /* Spinner top border color */
    border-radius: 50%; /* Circular spinner */
    animation: spin 1s linear infinite; /* Spin animation */
    display: none; /* Hide spinner by default */
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.syncNow-button-text {
    display: inline; /* Show text by default */
}

.syncNow.loading .spinner {
    display: inline; /* Show spinner when loading */
}

.syncNow.loading .syncNow-button-text {
    display: none; /* Hide text when loading */
}
.btn, .btn-primary,.select-plan  {
     background-color:cadetblue !important;
    color:white; 
}
a{
    color: cadetblue !important;
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: cadetblue !important;
    border-color: cadetblue !important;
}
.side-menu ul {
  
    padding-top: 20px;
}
.themesTypeHeading{
    color: forestgreen;
}
.tab-content>.active {
    display: block;
    padding-top: 20px;
}
.fa, .fas {
    font-weight: 900;
   
    color: #0c5460;
}