/* START no text underline */
.no-underline {
    text-decoration: none;
}

.no-underline:hover {
    text-decoration: none; /* Ensures hover doesn't reintroduce the underline */
}
/* END no test underline */

/* START Back to Top Button */
    #backToTop {
        font-size: 20px;
        line-height: 50px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
        #backToTop {
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 18px;
        }
    }

    @media (max-width: 480px) {
        #backToTop {
            width: 30px;
            height: 30px;
            line-height: 30px;
            font-size: 16px;
        }
    }
/* END Back to Top Button */

/* START Cookies Listener */
.cookies-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    background-color: #f1f1f1;
    border-top: 2px solid #ccc;
    padding: 20px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 14px;
}

.cookies-box p {
    margin: 0 0 10px 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.cookies-box a {
    color: #007bff;
    text-decoration: none;
}

.cookies-box a:hover {
    text-decoration: underline;
}

.cookies-form {
    display: flex;
    justify-content: space-between;
}

.cookies-form button {
    flex: 0 0 auto;
    margin: 0 10px;
}

.reset-cookies-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
}

.reset-cookies-button button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    padding: 0;
}
@media (max-width: 768px) {
    .cookies-box {
        width: 100%;
    }

    .cookies-form {
        justify-content: space-between;
    }
}
/* END Cookies Listener */

/* START Left Column Menu */
    #left-column {
        transition: width 0.3s ease;
    }

    #left-column.expanded {
        background: #f1f1f1;
    }

    @media screen and (max-width: 768px) {
        #left-column.expanded {
            width: 50%;
        }
    }

    @media screen and (min-width: 769px) and (max-width: 1234px) {
        #left-column.expanded {
            width: 33%;
        }
    }
/* END Left Column Menu */

/*** START custom tooltip ***/
/* Container that holds both the button and the tooltip data */
.tooltip-container {
  display: inline-block;  /* or block, if you want a full-width element */
  position: relative;     /* needed for absolutely positioned tooltip */
}

/* The tooltip text (using ::after) */
.tooltip-container:hover::after {
  content: attr(data-title);
  position: absolute;
  
  /* Position below the container */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  
  /* Sizing */
  min-width: 200px;
  max-width: 300px;
  padding: 10px;
  
  /* Styling */
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  white-space: normal;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  
  /* Keep on top of other elements */
  z-index: 1000;
  
  /* So hovering over the tooltip doesn’t flicker (avoid capturing mouse events) */
  pointer-events: none;
}

/* Optional arrow pointing down from the container */
.tooltip-container:hover::before {
  content: "";
  position: absolute;
  top: 100%;   /* arrow at the bottom of the container */
  left: 50%;
  transform: translateX(-50%);
  
  /* Arrow style */
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  
  /* Slightly lower z-index than the tooltip box */
  z-index: 999;
}
/*** END custom tooltip ***/

 
/* START Basic styling for the avatar container */
        .avatar-container {
            position: relative;
            width: 50px; 
            height: 50px;
            margin: 0 auto; /* center horizontally */
            border-radius: 50%; /* round shape */
            overflow: hidden;
            border: 2px solid #41b7fa;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .avatar-container-large {
		    position: relative;
		    width: 65px; 
		    height: 65px;
		    margin: 0 auto; /* center horizontally */
		    border-radius: 50%; /* round shape */
		    border: 2px solid #41b7fa;
		    display: flex;
		    justify-content: center;
		    align-items: center;
		    overflow: visible; /* Allow content outside the container to be visible */
		}
        .avatar-container-small {
            position: relative;
            width: 40px; 
            height: 40px;
            margin: 0 auto; /* center horizontally */
            border-radius: 50%; /* round shape */
            overflow: hidden;
            border: 2px solid #41b7fa;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .avatar-container img,
		.avatar-container-small img,
		.avatar-container-large img {
		    width: 100%;
		    height: 100%;
		    object-fit: cover; /* fill the container while maintaining aspect ratio */
		}
        
        /* The small 'X' button at bottom-right corner */
        .delete-btn {
		    position: absolute;
		    bottom: -2px; /* Move outside the container */
		    right: -2px; /* Move outside the container */
		    background: #fdf5e6; /* red-ish */
		    color: #f44336;
		    border: none;
		    border-radius: 50%;
		    width: 24px;
		    height: 16px;
		    cursor: pointer;
		    text-align: center;
		    line-height: 10px;
		    font-weight: bold;
		    z-index: 10; /* Ensure it stays above other content */
		    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for visibility */
		}
        .delete-btn:hover {
            background: #ffecec;
		    border: 1px solid;
            border-color: #f44336; 
        }

        /* Modal backdrop */
        .modal-backdrop {
            display: none; /* hidden by default */
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }
        /* Modal window */
        .modal {
            display: none; /* hidden by default */
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 20px;
            width: 400px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            z-index: 1000;
        }
        .modal-header {
            font-weight: bold;
            margin-bottom: 10px;
        }
        .modal-close {
		    float: right;
		    cursor: pointer;
		    color: #999;
		    width: 24px;
		    height: 24px;
		    line-height: 24px;
		    text-align: center;
		    border: 1px solid transparent;
		    border-radius: 50%;
		    transition: all 0.3s;
		}

		.modal-close:hover {
		    color: #f44336; /* Red color for the 'X' */
		    border-color: #f44336; /* Red border on hover */
		    background-color: #ffecec; /* Light red background */
		}
        .modal-body {
            margin-bottom: 10px;
        }
        .modal-footer {
            text-align: right;
        }
/* END AVATAR STYLE */

/* START CAROUSEL */
.carousel-container {
    position: relative;
    width: 100%;
    max-height: 350px; /* Set maximum height */
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    animation: slide 15s infinite;
    width: 100%; /* 100% per slide */
}

.carousel-item {
    position: relative;
    flex: 1 0 100%;
    max-height: 350px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 14s infinite;
}

/* Add overlay */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 0.3 opacity */
    z-index: 1; /* Ensure it is above the image but below the caption */
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
    z-index: 2; /* Ensure it is above the overlay */
}

.carousel-caption h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .carousel-caption h5 {
        display: block; /* Show h5 text */
        font-size: 1.2rem; /* Adjust size for smaller screens */
    }

    .carousel-caption h2 {
        font-size: 1.5rem; /* Adjust font size for better visibility */
    }

    .carousel-caption strong {
        font-size: 1.5rem; 
        font-weight: bold;
        display: block; /* Ensure strong remains visible */
    }
}
@media screen and (max-width: 400px) {
    .carousel-caption h5 {
        display: none; /* Hide h5 text for small screens */
    }

    .carousel-caption h2 {
        font-size: 1.5rem; /* Adjust font size for better visibility */
    }

    .carousel-caption strong {
        font-size: 1.5rem;
        font-weight: bold;
        display: block; /* Ensure strong text replaces h5 effectively */
    }
}

/* Animations */
@keyframes slide {
    0%, 33% { transform: translateX(0); }
    34%, 66% { transform: translateX(-100%); }
    67%, 100% { transform: translateX(-200%); }
}

@keyframes zoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
/* END CAROUSEL */

/* START INTRODUCTION */
/* Adjust H1 for small screens */
@media screen and (max-width: 400px) {
    .responsive-heading {
        font-size: 1.5rem; /* Smaller font size */
        font-weight: bold; /* Bold as a replacement for H1 */
        text-align: center; /* Center the heading */
        display: block; /* Ensure proper block display */
    }
}

/* Button Styling */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Original button color */
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s; /* Smooth hover effect */
}

.cta-button:hover {
    background-color: #0056b3; /* Hover color */
    transform: scale(1.05); /* Slightly enlarge on hover */
}
/* END INTRODUCTION */

/* START NEWSLETTER */
.newsletter-form .w3-row > div {
    display: flex;
    align-items: center;
}

.newsletter-form .w3-row > div input,
.newsletter-form .w3-row > div button {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .newsletter-form .w3-row > div {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-form .w3-row > div input,
    .newsletter-form .w3-row > div button {
        width: 100%;
    }
}
/* END NEWSLETTER */

/* START PRICING */
/* Tab Buttons */
.pricing-tab-button {
    margin: 0 2px;
    padding: 10px 20px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    background-color: #5a97ff;
    color: #fff;
    cursor: pointer;
    border: 1px solid #007bff;
    border-bottom: none;
    transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
}


.pricing-tab-button:hover {
    background-color: #007bff;
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.pricing-tab-button.active {
    background-color: #0056b3;
    color: #fff;
    font-weight: bold;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

    .pricing-responsive-btn {
        display: block; /* Ensure it takes full width */
        text-align: center; /* Center text and icon */
        padding: 12px 20px; /* Adjust padding for better touch support */
        font-size: 16px; /* Default font size */
        width: 100%; /* Make it take full width on smaller screens */
        max-width: 300px; /* Optional: Limit width on larger screens */
        margin: 0 auto; /* Center the button horizontally */
        word-wrap: break-word; /* Allow long text to break into multiple lines */
        overflow-wrap: break-word; /* Ensure consistent breaking across all browsers */
        white-space: normal; /* Allow text to wrap onto the next line */
    }

    /* Smaller screen adjustments */
    @media screen and (max-width: 600px) {
        .pricing-responsive-btn {
            font-size: 14px; /* Slightly smaller font for small screens */
            padding: 10px 15px; /* Adjust padding */
        }
    }
    
/* Tab Content */
.tab-content {
    display: none; /* Hide by default */
    padding: 20px;
    /*border-top: 2px solid #007bff;*/
}

.tab-content.active {
    display: block;
}

/* Features List */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    font-size: 16px;
    margin-bottom: 5px;
}

ul li i {
    margin-right: 10px;
    font-size: 18px;
}

/* Container */
.pricing-container {
    background-color: #f4f4f4;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
}
/* END PRICING */

/* START Enlarge image on Hover */
.enlarge-on-hover {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.enlarge-on-hover:hover {
    transform: scale(1.1); /* Enlarge the image */
    filter: brightness(0.8); /* Darken the image */
}
/* END Enlarge image on Hover */

/* START Enlarge text link on hover */
.enlarge-text-on-hover {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block; /* Ensures the transform works correctly */
}

.enlarge-text-on-hover:hover {
    transform: scale(1.1); /* Enlarges the text */
    color: #007bff; /* Changes color on hover (optional) */
}
/* END Enlarge text link on hover */

/* START password and category buttons */
.pwd-position-container {
    position: relative;
    display: flex; /* Align elements within the container */
    align-items: center; /* Center vertically */
    justify-content: space-between; /* Space out left and right elements */
}

.pwd-password-dots, .pwd-password-plain {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin-right: 10px;
}

.icon-group {
    display: flex;
    gap: 10px; /* Add spacing between the icons */
}

.pwd-copy-icon, .pwd-toggle-icon {
    cursor: pointer;
    font-size: 18px; /* Adjust icon size */
    color: #007bff;
}

.pwd-copy-icon:hover, .pwd-toggle-icon:hover {
    color: #0056b3;
}


.pwd-fa-user,
.pwd-fa-lock {
    margin-right: 5px; /* Space between icon and text */
}

.pwd-cat-small-btn {
    padding: 0px;
    width: 20px; /* Smaller width */
    height: 20px; /* Smaller height */
    font-size: 11px; /* Adjust font size */
    display: inline-flex; /* Use flex for alignment */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
    margin-left: 0px; /* Add spacing between buttons */
    margin-right: 0; /* Ensure no right margin */
    transition: box-shadow 0.2s ease; /* Smooth transition for hover effect */
}

.pwd-cat-small-btn:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

.pwd-cat-small-btn-center-align {
    text-align: center; /* Align buttons to the right */
}

.pwd-small-btn {
    padding: 0px;
    width: 20px; /* Smaller width */
    height: 20px; /* Smaller height */
    font-size: 11px; /* Adjust font size */
    display: inline-flex; /* Use flex for alignment */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
    margin-left: 0px; /* Add spacing between buttons */
    margin-right: 0; /* Ensure no right margin */
    transition: box-shadow 0.2s ease; /* Smooth transition for hover effect */
}

.pwd-small-btn:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

.pwd-small-btn-right-align {
    text-align: right; /* Align buttons to the right */
}
/* END passwoard and category buttons */

/* BLOG */
    .blog-card {
        display: flex;
        flex-direction: column;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 20px;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .blog-card .badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #007bff;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
    }
    .blog-card-image {
    position: relative;
	    width: 100%; /* Ensures the container takes the full width of its parent */
	    overflow: hidden; /* Ensures any overflowing content is clipped */
	}

	.blog-card-image img {
	    display: block; /* Prevents inline spacing below the image */
	    max-width: 100%; /* Ensures the image scales down to fit within the container */
	    height: auto; /* Maintains aspect ratio of the image */
	}

    .blog-card img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }
    .blog-card img:hover {
        transform: scale(1.05);
    }
    .blog-card-content {
        padding: 15px;
    }
    .blog-card-header {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }
    .blog-read-more-btn {
        margin-top: 10px;
        text-align: center;
        margin-bottom: 10px; /* Adds spacing when stacked */
    }
    .blog-read-more-btn a {
        text-decoration: none;
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 14px;
        display: inline-block;
        transition: transform 0.3s ease, background-color 0.3s;
    }
    .blog-read-more-btn a:hover {
        background-color: #0056b3;
        transform: scale(1.1);
    }
    .blog-card-footer {
        border-top: 1px solid #ddd;
        margin-top: 10px;
        padding-top: 10px;
        display: flex;
	    justify-content: space-between;
	    align-items: center;
	    flex-wrap: wrap; /* Ensures items wrap when space is limited */
    }
    .blog-social-share-buttons {
	    display: flex;
	    gap: 2px;
	    flex-wrap: wrap; /* Ensures buttons wrap neatly */
	}
	.blog-social-share-buttons a {
        text-decoration: none;
        color: #fff;
        padding: 6px 10px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 10%;
        margin: 0 2px;
        background-color: #007bff;
        transition: transform 0.3s ease, background-color 0.3s;
    }
    .blog-social-share-buttons a:hover {
        transform: scale(1.2);
        background-color: #0056b3;
    }
    .blog-social-share-buttons button{
		    color: #fff;
		    border: none;
		    font-size: 10px;
		    cursor: pointer;
		    justify-content: center;
		    height: 27px; /* Set button height */
		    width: 33px; /* Set button width */
		    background-color: #007bff; /* Add background color for visibility */
		    border-radius: 10%; /* Optional: add rounded corners */
		    display: flex; /* Ensure alignment works with justify-content */
		    align-items: center; /* Center text vertically */
		}
    .blog-read-main-column {
            flex: 2 1 66.67%;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
    .blog-read-sidebar {
            flex: 1 1 33.33%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
    @media (max-width: 999px) {
        .blog-read-main-column, .blog-read-sidebar {
        	flex: 1 1 100%;
        }
	}
    @media (max-width: 768px) {
        .blog-card-footer {
	        flex-direction: column; /* Stack items vertically */
	        align-items: flex-start; /* Align to the left */
	    }

	    .blog-read-more-btn, .blog-social-share-buttons {
	        width: 100%; /* Full width on small screens */
	        text-align: center; /* Center-align content */
	    }

	    .blog-social-share-buttons {
	        justify-content: center; /* Center the social buttons */
	    }
    }
        .blog-read-blog-card, .blog-read-mini-blog-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .blog-read-blog-card img, .blog-read-mini-blog-card img {
            width: 100%;
            height: auto;
        }
        .blog-read-blog-content, .blog-read-mini-blog-content {
            padding: 15px;
        }
        .blog-read-blog-header, .blog-read-mini-blog-header {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #555;
            margin-bottom: 10px;
        }
        .blog-read-mini-blog-card .blog-read-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #007bff;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
        }
        .blog-read-mini-blog-card .blog-read-read-more {
            text-align: center;
            margin-top: 10px;
        }
        .blog-read-mini-blog-card .blog-read-read-more a {
            text-decoration: none;
            color: #007bff;
            font-size: 14px;
        }
        
        .badge {
		    position: absolute;
		    top: 10px;
		    left: 10px;
		    background-color: #007bff;
		    color: #fff;
		    padding: 5px 10px;
		    border-radius: 5px;
		    font-size: 12px;
		    z-index: 1; /* Ensures the badge appears above the image */
		}
		
		/* Main layout container */
		.blog-read-layout {
		    display: flex;
		    gap: 20px; /* Space between columns */
		}

		/* Main content column */
		.blog-main {
		    flex: 2; /* Take up 2/3 of the width */
		}

		/* Sidebar column */
		.blog-sidebar {
		    flex: 1; /* Take up 1/3 of the width */
		}

		/* Blog image responsiveness */
		.blog-image,
		.mini-blog-image {
		    max-width: 100%;
		    height: auto; /* Maintain aspect ratio */
		    display: block;
		}

		/* Responsive stacking */
		@media (max-width: 999px) {
		    .blog-read-layout {
		        flex-direction: column; /* Stack columns vertically */
		    }
		    
		    .blog-main, .blog-sidebar {
		        flex: 1; /* Both columns take full width */
		    }
		}

.logo {
    width: 200px; /* Default width for larger screens */
    height: auto; /* Maintain aspect ratio */
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .logo {
        width: 100px; /* Adjust width for small screens */
        height: auto; /* Keep aspect ratio */
    }
}

.form-w3-select {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}


.form-w3-col {
    margin-bottom: 15px; /* Add consistent spacing between fields */
}

.form-custom-select {
    height: 40px; /* Adjust the height */
    font-size: 16px; /* Optional: Adjust font size for better readability */
    padding: 5px 10px; /* Add padding for content inside the select */
    line-height: normal; /* Ensure content is vertically aligned */
}

@media screen and (max-width: 768px) {
    .form-w3-col {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

.wide-dropdown {
    min-width: 250px;
}

.inline-items-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* General styles for icon container */
.new-pricing-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    border-style: solid;
    transition: all 0.3s ease; /* Smooth resizing */
}

/* Default button styles */
.new-pricing-icon-button {
    text-decoration: none;
    cursor: pointer;
}

/* Responsive sizes for large, medium, and small screens */
@media screen and (min-width: 993px) {
    .new-pricing-icon-container {
        width: 90px; /* Large screens */
        height: 90px;
        border-width: 2px;
    }

    .new-pricing-icon-button i {
        font-size: 36px;
    }
}

@media screen and (min-width: 601px) and (max-width: 992px) {
    .new-pricing-icon-container {
        width: 60px; /* Medium screens */
        height: 60px;
        border-width: 2px;
    }

    .new-pricing-icon-button i {
        font-size: 22px;
    }
}

@media screen and (max-width: 600px) {
    .new-pricing-icon-container {
        width: 45px; /* Small screens */
        height: 45px;
        border-width: 1px;
    }

    .new-pricing-icon-button i {
        font-size: 14px;
    }
}

/* Custom active tab styling */
.new-pricing-custom-active {
    background-color: #303f9f !important; /* Dark theme color */
    border-color: #ffffff !important; /* White border */
    color: #ffffff !important; /* White text */
}

/* Tab content container */
.new-pricing-tab-content {
    display: none; /* Hidden by default */
    /*padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;*/
}

.new-pricing-tab-content.active {
    display: block; /* Show the active tab */
}

/* STRIPE management container */
    /* Container for the columns */
    .stripe-manage-form-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: left;
        /*max-width: 800px;*/
        margin: auto;
    }

    /* Ensure it stacks on smaller screens */
    @media (max-width: 768px) {
        .stripe-manage-form-container {
            grid-template-columns: 1fr;
        }
    }

    /* Center the button in its column */
    .stripe-manage-form-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px; /* Add padding for spacing inside */
        border: 1px solid #ccc; /* Light gray border */
        border-radius: 8px; /* Rounded corners */
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
        background: #fff; /* Background color */
    }

    /* Style for text */
    .stripe-manage-form-column p {
        width: 100%;
        margin-bottom: 10px;
    }
/* END STRIPE management container */

/* W3 added color */
.w3-food-banana
{color:#000!important;background-color:#fafe4b!important}
.w3-food-apple
{color:#000!important;background-color:#76cd26!important}
.w3-text-dark-green
{color:#000!important;background-color:#006216!important}

.w3-vivid-pink
{color:#fff!important;background-color:#ffb5bA!important}
.w3-vivid-red
{color:#fff!important;background-color:#be0032!important}
.w3-vivid-orange
{color:#fff!important;background-color:#f38400!important}
.w3-vivid-yellow
{color:#fff!important;background-color:#f3c300!important}
.w3-vivid-green
{color:#fff!important;background-color:#008856!important}
.w3-vivid-blue
{color:#fff!important;background-color:#00a1c2!important}
.w3-vivid-black
{color:#fff!important;background-color:#000!important}
.w3-vivid-white
{color:#000!important;background-color:#fff!important}
.w3-vivid-purple
{color:#fff!important;background-color:#9a4eae!important}
.w3-vivid-purple
{color:#fff!important;background-color:#9a4eae!important}
.w3-vivid-yellowish-pink
{color:#fff!important;background-color:#ffb7a5!important}
.w3-vivid-reddish-orange
{color:#fff!important;background-color:#e25822!important}
.w3-vivid-orange-yellow
{color:#fff!important;background-color:#f6a600!important}
.w3-vivid-greenish-yellow
{color:#fff!important;background-color:#dcd300!important}
.w3-vivid-yellow-green
{color:#fff!important;background-color:#8db600!important}
.w3-vivid-yellowish-green
{color:#fff!important;background-color:#27a64c!important}
.w3-vivid-bluish-green
{color:#fff!important;background-color:#008882!important}
.w3-vivid-greenish-blue
{color:#fff!important;background-color:#0085a1!important}
.w3-vivid-purplish-blue
{color:#fff!important;background-color:#30267a!important}
.w3-vivid-reddish-purple
{color:#fff!important;background-color:#870074!important}
.w3-vivid-purplish-red
{color:#fff!important;background-color:#ce4676!important}
.w3-food-aspargus
{color:#fff!important;background-color:#77ab56!important}
.w3-food-apricot
{color:#fff!important;background-color:#ffb16d!important}
.w3-food-aubergine
{color:#fff!important;background-color:#3d0734!important}
.w3-food-avocado
{color:#fff!important;background-color:#87a922!important}
.w3-food-butter
{color:#000!important;background-color:#ffff81!important}
.w3-food-blueberry
{color:#fff!important;background-color:#464196!important}
.w3-food-carrot
{color:#fff!important;background-color:#e67e22!important}
.w3-food-cherry
{color:#fff!important;background-color:#cf0234!important}
.w3-food-chocolate
{color:#fff!important;background-color:#411900!important}
.w3-food-cranberry
{color:#fff!important;background-color:#9e003a!important}
.w3-food-coffee
{color:#fff!important;background-color:#a6814c!important}
.w3-food-egg
{color:#000!important;background-color:#fffcc4!important}
.w3-food-grape
{color:#fff!important;background-color:#6c3461!important}
.w3-food-kiwi
{color:#000!important;background-color:#8ee53f!important}
.w3-food-lemon
{color:#000!important;background-color:#fdff52!important}
.w3-food-lime
{color:#000!important;background-color:#bffe28!important}
.w3-food-mango
{color:#fff!important;background-color:#ffa62b!important}
.w3-food-mushroom
{color:#fff!important;background-color:#ba9e88!important}
.w3-food-mustard
{color:#fff!important;background-color:#ceb301!important}
.w3-food-mint
{color:#000!important;background-color:#c0fa8b!important}
.w3-food-olive
{color:#fff!important;background-color:#6e750e!important}
.w3-food-orange
{color:#fff!important;background-color:#f97306!important}
.w3-food-pea
{color:#fff!important;background-color:#a4bf20!important}
.w3-food-peach
{color:#fff!important;background-color:#ffb07c!important}
.w3-food-pear
{color:#000!important;background-color:#cbf85f!important}
.w3-food-pistachio
{color:#000!important;background-color:#c0fa8b!important}
.w3-food-plum
{color:#fff!important;background-color:#3f012c!important}
.w3-food-pomegranate
{color:#fff!important;background-color:#c0392b!important}
.w3-food-pumpkin
{color:#fff!important;background-color:#d35400!important}
.w3-food-raspberry
{color:#fff!important;background-color:#b00149!important}
.w3-food-saffron
{color:#fff!important;background-color:#feb209!important}
.w3-food-salmon
{color:#fff!important;background-color:#ff796c!important}
.w3-food-spearmint
{color:#000!important;background-color:#1ef876!important}
.w3-food-squash
{color:#fff!important;background-color:#f2ab15!important}
.w3-food-strawberry
{color:#fff!important;background-color:#fb2943!important}
.w3-food-tomato
{color:#fff!important;background-color:#ec2d01!important}
.w3-food-wheat
{color:#000!important;background-color:#fbdd7e!important}
.w3-food-wine
{color:#fff!important;background-color:#80013f!important}


/* Apply styles for small screens 
@media screen and (max-width: 600px) { 
    * {
        margin: 0 !important;
        padding: 0 !important;
    }


    .w3-container,
    .w3-row,
    .w3-col {
        width: 100% !important;
    }


    .w3-half,
    .w3-third,
    .w3-quarter {
        width: 100% !important;
    }

    .w3-btn {
        display: block !important;
        width: 100% !important;
    }


    html, body {
        overflow-x: hidden;
    }
}

@media screen and (max-width: 600px) {

    * {
        margin: 0 !important;
        padding: 0 !important;
    }

    
    .w3-row,
    .w3-section,
    .w3-col {
        margin: 10px 0 !important; 
        padding: 0 !important;
        width: 100% !important; 
    }

    .w3-rest {
        width: 100% !important; 
    }

    .w3-input {
        width: 100% !important; 
        padding: 10px !important; 
        box-sizing: border-box; 
    }


    .w3-row[style*="display: flex"] {
        display: block !important;
    }

    .w3-half {
        width: 100% !important; 
        margin-bottom: 10px !important; 
    }

  
    .w3-btn {
        display: block !important;
        width: 100% !important;
        padding: 10px !important;
    }
}
*/
