/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #15B168;
    --accent-color: #50a487;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --gray: #95a5a6;
    --light-gray: #bdc3c7;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/*a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}*/

/*img {
    max-width: 100%;
    height: auto;
}*/

img {
    aspect-ratio: auto;
}

ul {
    list-style: none;
}

/*! COMMON FLEX CONFIGS*/
.flexwrap {
    flex-wrap: wrap;
}

.flexrow {
    display: flex;
    flex-direction: row;
}

.flexcolumn {
    display: flex;
    flex-direction: column;
}

.horizontalcenter {
    justify-content: center;
}

.verticalcenter {
    align-items: center;
}

.vhcenter {
    justify-content: center;
    align-items: center;
}

.spacebetween {
    justify-content: space-between;
    width: 100%;
}

.frspvc {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.frvc {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flexstart {
    align-self: flex-start;
}

.flexend {
    justify-content: flex-end;
}

.circular {
    border-radius: 50%;
    padding: 5px;
}

.dynamic {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.dynamic2 {
    display: flex;
    flex-wrap: wrap;
}

.singleline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

/*.btn.primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}*/

.btn.secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    right: 24px;
    top: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 4px;
    min-width: 200px;
    transition: opacity 0.3s ease, visibility 0s linear 5s;
}

.menu-icon:hover + .top-menu, .top-menu:hover {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: white;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/*.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}*/

/* Hero Section */
/*.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}*/

.hero {
    position: relative;
    overflow: hidden;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 80px;
}

/* Background Slider Container */
.hero-background-slider {
    position: absolute;
    top: 80px;
    left: 0;
    width: 200%; /* N * 100% where N is the number of unique images */
    height: 100%;
    display: flex;
    animation: heroSlideBackground 30s linear infinite; /* Adjusted speed for smaller height */
    z-index: 1;
}

/* Individual Background Slides */
.hero-slide {
    width: 33.33%; /* 100% / N */
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* Keyframes for the continuous sliding animation */
@keyframes heroSlideBackground {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.33%); /* Moves by the width of one unique image (100% / N) */
    }
}

/* Overlay for content to sit on top of the background */
.hero-content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Removed flex properties from here to apply them to .hero-content-overlay .container instead */
    /* This ensures the content and image are directly managed by flexbox */
}

.hero-content-overlay .container {
    display: flex;
    flex-direction: column; /* Default to column for small screens */
    align-items: center; /* Center items in column layout */
    justify-content: center; /* Center vertically in column layout */
    height: 100%; /* Ensure container takes full height of overlay */
    text-align: center; /* Center text by default */
}


/* Hero Content Styling */
.hero-content {
    flex: 1; /* Allows content to take available space */
    padding-bottom: 20px; /* Add some space below content before image on small screens */
}

.hero-content h1 {
    font-size: 2.5rem; /* Adjusted for smaller height */
    margin-bottom: 0.5rem; /* Reduced margin */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: 1rem; /* Adjusted for smaller height */
    margin-bottom: 1rem; /* Reduced margin */
    max-width: 600px; /* Constrain subtitle width */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/*!* Call to Action Buttons *!
.flexrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; !* Slightly smaller gap *!
    margin-top: 15px; !* Slightly smaller margin *!
}*/

.cta-buttons .btn {
    padding: 12px 25px; /* Slightly smaller padding */
    font-size: 0.9rem; /* Smaller font size */
}

.cta-buttons .primary {
    background-color: #ffd700;
    color: #1a2a6c;
    border: 2px solid #ffd700;
}

.cta-buttons .primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.cta-buttons .secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    margin-left: 20px;
}

.cta-buttons .secondary:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Image Styling */
.hero-image {
    margin-top: 20px; /* Adjusted margin */
    flex: 0 0 auto; /* Prevent image from growing/shrinking excessively */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Adjusted shadow */
    border-radius: 10px; /* Adjusted radius */
    width: 150px; /* Adjusted fixed width for smaller hero section */
    height: 250px; /* Adjusted fixed height */
    object-fit: contain; /* CRUCIAL: Ensures whole image is visible within its dimensions */
    background-color: rgba(0,0,0,0.1);
    padding: 3px;
}


/* Media Queries for Larger Screens (Desktop) */
@media (min-width: 768px) {
    .hero-content-overlay .container {
        flex-direction: row; /* Side-by-side layout on larger screens */
        text-align: left; /* Align text to the left */
        align-items: center; /* Vertically align items in the middle */
    }

    .hero-content {
        padding-right: 30px; /* Space between text and image */
        padding-bottom: 0;
    }

    .hero-content h1 {
        font-size: 3rem; /* Slightly larger for desktop, but still constrained */
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
        margin-left: 0;
        margin-right: 0;
    }

    .flexrow {
        justify-content: flex-start; /* Align buttons to the left */
    }

    .hero-image {
        margin-top: 0;
        margin-left: 30px; /* Space between text and image */
    }

    .hero-image img {
        width: 180px; /* Slightly larger image on desktop */
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-image img {
        width: 200px;
        height: 350px;
    }
}

/*! Value Propositions */
.value-props {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.value-props h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.prop-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.prop-card:hover {
    transform: translateY(-10px);
}

.prop-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.prop-card h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.about-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 500px;
}



.team-section {
    margin-top: 4rem;
}

.team-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 1rem;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 0.5rem;
}

.role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.product-card {
    display: flex;
    gap: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
}

.product-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.product-details ul {
    margin: 1.5rem 0;
}

.product-details li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.product-details li::before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.corporate-solutions {
    margin-top: 4rem;
}

.corporate-solutions h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.solution-card h4 {
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.features-tabs {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
}

.tab-btn {
    padding: 1.2rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.tab-content {
    display: none;
    padding: 2rem;
}

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

.tab-content-inner {
    display: flex;
    gap: 3rem;
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tab-text ul {
    margin: 1.5rem 0;
}

.tab-text li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.tab-text li::before {
    content: "•";
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.tab-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* News Section */
.news-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.news-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

.press-releases {
    margin-top: 4rem;
}

.press-releases h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.press-list {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.press-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.press-item:last-child {
    border-bottom: none;
}

.press-date {
    min-width: 120px;
    color: var(--secondary-color);
    font-weight: 600;
}

.press-title {
    flex: 1;
    font-weight: 600;
    color: var(--primary-color);
}

/* Resources Section */
.resources-section {
    padding: 5rem 0;
}

.resources-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.resources-content {
    display: flex;
    gap: 3rem;
}

.support-section {
    flex: 1;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: var(--light-color);
}

.faq-answer.active {
    padding: 1.2rem;
    max-height: 500px;
}

.contact-support {
    margin-top: 2rem;
    text-align: center;
}

.downloads-section {
    flex: 1;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
}

.download-card i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.download-info h4 {
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.download-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.video-tutorials {
    margin-top: 2rem;
}

.video-tutorials h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.video-thumbnail {
    margin-bottom: 1rem;
}

.video-thumbnail p {
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.rating {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    border-radius: 50%;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-bottom: 3rem;
}

.partners-grid img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partners-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-benefits {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.partner-benefits h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.partner-benefits p {
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Investor Section */
.investor-section {
    padding: 5rem 0;
}

.investor-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.investor-content {
    display: flex;
    gap: 3rem;
}

.investor-text {
    flex: 1;
}

.investor-highlights {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.highlight {
    text-align: center;
}

.highlight h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.investor-downloads {
    flex: 1;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.download-item:hover {
    transform: translateX(5px);
}

.download-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.download-item a {
    font-weight: 600;
    color: var(--primary-color);
}

.download-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--light-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .tab-content-inner,
    .resources-content,
    .contact-content,
    .investor-content {
        flex-direction: column;
    }

    .hero-content,
    .about-text,
    .about-image,
    .tab-text,
    .tab-image,
    .support-section,
    .downloads-section,
    .contact-form,
    .contact-info,
    .investor-text,
    .investor-downloads {
        flex: none;
        width: 100%;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .about-image {
        order: -1;
    }

    .tab-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: block;
    }

    .product-card {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/*!SNACKBAR*/
#snackbar {
    visibility: hidden;
    min-width: 250px;
    max-width: 40vw;
    background-color: var(--primary);
    color: var(--background);
    text-align: center;
    border-radius: 24px;
    padding: 16px;
    position: fixed;
    z-index: 7;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Careers Page Specific Styles */
.careers-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
    url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.careers-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.careers-hero .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Why Join Us Section */
.why-join {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-join h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: var(--light-color);
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.reason-card h3 {
    margin-bottom: 1rem;
}

/* Culture Section */
.culture-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.culture-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.culture-text {
    flex: 1;
}

.culture-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.culture-points {
    margin-top: 2rem;
}

.culture-point {
    margin-bottom: 1.5rem;
}

.culture-point h3 {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.culture-point h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: var(--light-color);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Open Positions Section */
.positions-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.positions-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.position-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-group {
    flex: 1;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-main);
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.position-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.position-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.position-meta span {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: var(--light-color);
    color: var(--text-color);
}

.position-meta .department {
    background: #e3f2fd;
    color: #1976d2;
}

.position-meta .location {
    background: #e8f5e9;
    color: #388e3c;
}

.position-meta .type {
    background: #fff3e0;
    color: #fb8c00;
}

.no-positions {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.process-steps::-webkit-scrollbar {
    height: 8px;
}

.process-steps::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.process-steps::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.step {
    min-width: 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
    position: relative;
}

.step::after {
    content: '→';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

.timeline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Internships Section */
.internships-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.internships-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.internships-text {
    flex: 1;
}

.internships-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.internship-types {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.internship-types .type {
    flex: 1;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

.internship-types h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Diversity Section */
.diversity-section {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.diversity-section h2 {
    margin-bottom: 2rem;
}

.diversity-content p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.diversity-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.diversity-stats .stat {
    padding: 0 2rem;
}

.diversity-stats .stat:not(:last-child) {
    border-right: 1px solid var(--light-gray);
}

.diversity-stats h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

/* Careers CTA Section */
.careers-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    text-align: center;
}

.careers-cta h2 {
    margin-bottom: 1.5rem;
}

.careers-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Styles for Careers Page */
@media (max-width: 992px) {
    .culture-content,
    .internships-content {
        flex-direction: column;
    }

    .culture-image,
    .internships-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .position-filters {
        flex-direction: column;
    }

    .internship-types {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .careers-hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .diversity-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .diversity-stats .stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
        padding-bottom: 1.5rem;
    }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--gray);
    color: var(--dark);
}

.btn-outline:hover {
    background-color: var(--gray-light);
}

.btn-danger {
    background-color: var(--danger);
    color: white;
}

.btn-danger:hover {
    background-color: #dc2626;
}

.booking-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.sidebar {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.main-content {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

select, input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

select:focus, input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.date-scroller {
    display: flex;

    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 6px;
    scrollbar-width: thin;
}

.date-scroller::-webkit-scrollbar {
    height: 6px;
}

.date-scroller::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 3px;
}

.date-scroller::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 3px;
}

.date-item {
    padding: 6px;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
}

.date-item:hover {
    border-color: var(--primary-light);
}

.date-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.date-item .day {
    font-size: 0.75rem;
    opacity: 0.7;
}

.date-item .date {
    font-weight: 600;
    margin: 12px 0;
}

.pill {
    padding: 6px 12px;
    border-radius: 24px;
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.pill:hover {
    background-color: var(--primary-dark);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Explicitly set 5 columns */
    gap: 6px; /* Reduced gap */
    margin-top: 6px; /* Slightly reduced top margin */
}

.slot-item {
    padding: 12px; /* Reduced padding */
    border-radius: 0.3rem; /* Slightly reduced border radius */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
    font-size: 0.9rem; /* Optional: reduce font size for smaller items */
}

.slot-item:hover {
    border-color: var(--primary-light);
}

.slot-item.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slot-item.booked {
    background-color: var(--gray-light);
    color: var(--gray);
    cursor: not-allowed;
}

.summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-light);
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.alert {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    max-width: 350px;
    width: 90%;
    text-align: center;
}

.alert-success {
    background-color: #e6ffe6;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.alert-error {
    background-color: #ffe6e6;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.alert-summary-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    margin-bottom: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 8px 0;
}

.alert-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.alert-pill-button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.alert-pill-button.secondary-button {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.alert-pill-button:hover {
    opacity: 0.9;
}

.added-team-card {
    background-color: #eff6ff; /* Light blue background */
    border: 1px solid #bfdbfe; /* Muted blue border */
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #1e40af; /* Darker blue text */
    margin-top: 12px;
}
.added-team-card button {
    background-color: #ef4444; /* Red for remove */
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}
.added-team-card button:hover {
    background-color: #dc2626;
}

.dashboard-container {
    width: 100%;
    height: calc(100vh - 70px);
    margin: 0 auto;
    padding: 0 1.5rem;
    background: var(--light-color);
}

.dashboard-center {
    width: 60%;
    padding: 10px 24px;
    height: 100%;
    overflow-y: auto;
}

.dashboard-side {
    height: 100%;
    overflow-y: auto;
}

.dashboard-side {
    width: 20%;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
}

.dashboard-card {
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: var(--background);
    transition: var(--transition);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-actions a {
    text-decoration: none;
}

.dashboard-actions span:hover {
    color: var(--primary);
}

.dashboard-card a {
    background: var(--foreground);
    border-radius: 8px;
    padding: 8px;
    width: 100%;
    margin-top: 20px;
    color: var(--background);
    text-align: center;
}

.dashboard-card .input-title {
    margin-top: 10px;
}

.dashboard-booking {
    border: 1px solid var(--text-light);
    border-radius: 8px;
    padding: 12px;
}

.credit-option {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between label, input, button */
    padding: 10px 0;
    border-bottom: 1px solid #eee; /* Separator for options */
}

.credit-option:last-child {
    border-bottom: none; /* No border for the last option */
}

.credit-option label {
    font-size: 0.95em;
    color: #555;
}

.credit-option input[type="number"] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    width: 100%; /* Adjust as needed */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Promotional Offers Section */
.promo-option {
    padding-top: 15px;
}

.promo-buttons {
    display: grid; /* Use grid for responsive layout */
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust minmax for button size */
    gap: 10px; /* Space between promo buttons */
    margin-top: 10px;
}

.promo-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    background-color: #f0f8ff;
    color: #0056b3;
    border: 1px solid #a8d7ff;
    font-size: 0.95em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.promo-button:hover {
    background-color: #e0f0ff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.promo-button .original-amount {
    font-size: 0.9em;
    color: #555;
    text-decoration: line-through; /* Optional: strikethrough original amount */
}

.promo-button .credit-amount {
    font-size: 1.1em;
    color: #28a745; /* Green for credited amount */
    margin-top: 5px;
}

.promo-note {
    font-size: 0.85em;
    color: #777;
    text-align: center;
    margin-top: 10px;
}

/*

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; !* bg-gray-100 *!
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff; !* bg-white *!
    padding: 2rem; !* p-8 *!
    border-radius: 0.5rem; !* rounded-lg *!
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); !* shadow-md *!
    width: 100%;
    max-width: 32rem; !* max-w-md *!
}
*/
.title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    color: #3b82f6; /* text-blue-600 */
    margin-bottom: 1.5rem; /* mb-6 */
    text-align: center;
}

#payment-status {
    margin-bottom: 1rem; /* mb-4 */
    padding: 1rem; /* p-4 */
    border-radius: 0.375rem; /* rounded-md */
    border: 1px solid #e5e7eb; /* border-gray-200 */
    text-align: center;
}

#payment-details {
    space-y: 0.5rem; /* space-y-2 */
}

#payment-details h2 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* text-gray-800 */
}

#payment-details p {
    font-size: 1rem;
    color: #6b7280;
}

#payment-details span {
    font-weight: 500;
    color: #374151;
}

#back-button {
    margin-top: 1.5rem; /* mt-6 */
    text-align: center;
}

#back-button a {
    background-color: #3b82f6; /* bg-blue-500 */
    color: #fff; /* text-white */
    font-weight: 700; /* font-bold */
    padding: 0.5rem 1rem; /* py-2 px-4 */
    border-radius: 0.375rem; /* rounded */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#back-button a:hover {
    background-color: #2563eb; /* hover:bg-blue-700 */
}

.text-green-600 {
    color: #16a34a;
}

.text-red-600 {
    color: #dc2626;
}

.invoice-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.invoice-header {
    background-color: #15B168;
    color: white;
    padding: 25px;
    position: relative;
}

.invoice-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.company-info {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.company-info img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.invoice-details {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.invoice-title {
    font-size: 18px;
    font-weight: 700;
    color: #15B168;
}

.invoice-number {
    font-weight: 700;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-table thead {
    background-color: #15B168;
    color: white;
}

.invoice-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 700;
}

.invoice-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.invoice-table tbody tr:nth-child(odd) {
    background-color: #fafffd;
}

.invoice-table tbody tr:nth-child(even) {
    background-color: #e8f8ee;
}

.invoice-table .total-row {
    font-weight: 700;
    background-color: #f0f0f0 !important;
}

.invoice-table td:nth-child(1), .invoice-table th:nth-child(1) {
    width: 50%;
}

.invoice-table td:nth-child(2), .invoice-table td:nth-child(3),
.invoice-table th:nth-child(2), .invoice-table th:nth-child(3){
    width: 25%;
}

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

.text-bold {
    font-weight: 700;
}

.invoice-footer {
    padding: 20px 25px;
    text-align: center;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #eee;
}

.counter-button {
    background-color: transparent;
    padding: 4px;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    margin: 0 10px;
}

.counter-button:hover {
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .date-scroller {
        gap: 12px;
    }

    .date-item {
        min-width: 70px;
        padding: 12px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
:root {
    --background: #FFF;
    --foreground: #000;
    --textColor: #464646;
    --textColorVariant: #e5e5e5;
    --primary: #15B168;
    --primary10: #15B1681F;
    --secondary: #208456;
    --tertiary: #FDEC2E;
    --quartenary: #7F7BF8;
    --green: #36f129;
    --onPrimary: #0C0C0C;
    --onSecondary: #121212;
    --onTertiary: #1d1f21;
    --onQuartenary: #161618;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

/*HIDE SPINNER IN NUMBER INPUT FIELD*/
input[type=number] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="file"] {
    position: absolute;
    left: 0;
    opacity: 0;
    top: 0;
    bottom: 0;
}

textarea:focus, input:focus {
    outline: none;
}

input, button {
    font-family: 'Poppins', sans-serif;
    border: none;
}

button:hover, img:hover, a:hover {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

img {
    outline: none;
    border: none;
}

/*!HEADER*/
header {
    padding: 15px 50px;
    border-bottom: 1px solid var(--textColorVariant);
}

header .image-button {
    margin: 0 15px;
}

header h1 {
    margin-left: 10px;
    font-family: "New Amsterdam", sans-serif;
}

/*nav a {
    color: var(--foreground);
    font-weight: 500;
    font-size: 14px;
    margin: 0 10px;
    transition: all .3s ease-in;
}

nav a:hover {
    text-decoration: underline;
}*/

/*!FOOTER*/
footer {
    padding: 15px 0 0 0;
}

footer a {
    color: var(--foreground);
    font-weight: 500;
    margin-top: 5px;
}

footer img {
    margin-top: 5px;
}

/*! COMMON FLEX CONFIGS*/
.flexwrap {
    flex-wrap: wrap;
}

.flexrow {
    display: flex;
    flex-direction: row;
}

.flexcolumn {
    display: flex;
    flex-direction: column;
}

.horizontalcenter {
    justify-content: center;
}

.verticalcenter {
    align-items: center;
}

.vhcenter {
    justify-content: center;
    align-items: center;
}

.spacebetween {
    justify-content: space-between;
    width: 100%;
}

.frspvc {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.frvc {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flexstart {
    align-self: flex-start;
}

.flexend {
    justify-content: flex-end;
}

.circular {
    border-radius: 50%;
    padding: 5px;
}

.dynamic {
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
}

.dynamic2 {
    display: flex;
    flex-wrap: wrap;
}

.singleline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

/**/
.colour-TextS {
    color: var(--secondary);
}

.colour-TextT {
    color: var(--tertiary);
}

/*!FONT SIZES*/
.smallest-font {
    font-size: 0.6rem;
}

.small-font {
    font-size: 0.8rem;
}

.medium-font {
    font-size: 1rem;
}

.large-font {
    font-size: 1.2rem;
}

.larger-font {
    font-size: 2rem;
}

.largest-font {
    font-size: 5rem;
}

.bold {
    font-weight: 700;
}

.gray-font {
    color: var(--textColor);
}

/*! GROUPS*/
.colour-bar {
    background-color: var(--secondary);
    padding: 10px 50px;
    color: whitesmoke;
}

.colour-bar a {
    margin-left: 10px;
    font-size: 13px;
}

.colour-bar a:hover {
    color: var(--background);
}

/*!BLOCKS*/
.block {
    padding: 50px;
}

.block-variant {
    padding: 50px;
    background-color: var(--foreground);
    color: var(--textColorVariant);
}

.block-variant a {
    color: var(--background);
}

/*!INDEX GROUP*/
.index-group {
    padding: 50px;
    width: 100%;
}

.index-inner-group {
    width: 300px;
}

.index-inner-group .pill-button {
    margin: 24px 0;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: white;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/*!CONTACT US*/
.contactus {
    background-color: var(--primary10);
    color: var(--textColor);
    padding: 100px;
}

.contactus .card-flat {
    width: 40%;
}

.contactus input, .contactus textarea, .auth-admin input {
    border-radius: 12px;
    border: 1px solid var(--textColor);
    padding: 16px;
    margin: 10px 2px;

}

.contactus input, .contactus textarea {
    width: 50%;
}

.contactus textarea, .contactus button, .auth-admin input, .auth-admin button {
    width: 100%;
}

.contactus button {
    border-radius: 24px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--background);
    padding: 10px 0;
    margin: 20px 0;
}

.contactus button:hover {
    background-color: var(--background);
    color: var(--primary);
}

.contactus .contactus-classes {
    margin-top: 40px;
}

.contactus .contactus-classes div {
    width: 33.3%;
    margin-right: 10px;
}

.contactus a {
    font-weight: 700;
    color: var(--foreground);
}

.contactus a:hover {
    color: var(--primary);
}

/*!CARD FLAT*/
.card-flat {
    background-color: var(--background);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.card-gray {
    background-color: var(--textColorVariant);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

/*!FAQ*/
.faq {
    padding: 50px;
}

.faq .h1 {
    margin-top: 10px;
    font-size: 9vh;
    line-height: 10vh;
}

.faqs li {
    list-style: none;
    border: 1px solid var(--primary);
    color: var(--foreground);
}

.faqs li .answer {
    display: none;
}

.symbol {
    font-size: 24px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 8px;
}

.faqs li .plus {
    color: var(--primary);
}

.faqs li .minus {
    color: var(--background);
    display: none;
}

.faqs li:hover {
    background-color: var(--primary);
    color: var(--background);
    cursor: pointer;
    -webkit-transition: background-color 300ms linear, color 150ms linear;
    -ms-transition: background-color 300ms linear, color 150ms linear;
    transition: background-color 300ms linear, color 150ms linear;
}

.faqs li:hover .answer {
    display: block;
}

.faqs li:hover .plus {
    display: none;
    transform: rotate(45deg);
}

.faqs li:hover .minus {
    display: flex;
}

.filled-span {
    color: var(--primary);
    font-weight: 700;
}

.outlined-span {
    text-shadow:
            3px 3px 0 var(--primary),
            -1px -1px 0 var(--primary),
            1px -1px 0 var(--primary),
            -1px 1px 0 var(--primary),
            1px 1px 0 var(--primary);
    color: white;
    font-weight: 700;
}



/*!BUTTONS*/
.image-button {
    background-color: var(--secondary);
    color: var(--foreground);
    padding: 10px;
    border-radius: 50%;
    margin: 0 2px;
    height: 46px;
    width: 46px;
    border: 2px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
}

.image-button .sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-button .sign span {
    width: 100%;
    height: 100%;
    transition-duration: .3s;
}

.image-button .text {
    position: absolute;
    right: 0;
    width: 0;
    opacity: 0;
    font-size: 1em;
    font-weight: 500;
    transition-duration: .3s;
}

.image-button:hover {
    cursor: pointer;
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
}

.image-button:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
}

.image-button:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding: 0 10px;
}

.image-button:active {
    transform: translate(2px ,2px);
}

.slot-summary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    margin: 2px;
    padding: 2px 5px;
    border-radius: 8px;
}

.icon-button {
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EEE;
    border-radius: 50%;
    cursor: pointer;
    transition-duration: .3s;
    border: none;
    margin: 0 1px;
}

.icon-button label {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button input {
    width: 44px;
    height: 44px;
}

.icon-button .icon {
    font-size: 20px;
}

.icon-button:hover {
    background-color: var(--secondary);
}

.icon-button:hover .icon {
    animation: bellRing 0.9s both;
}

/* bell ringing animation keyframes*/
@keyframes bellRing {
    0%,
    100% {
        transform-origin: top;
    }

    15% {
        transform: rotateZ(10deg);
    }

    30% {
        transform: rotateZ(-10deg);
    }

    45% {
        transform: rotateZ(5deg);
    }

    60% {
        transform: rotateZ(-5deg);
    }

    75% {
        transform: rotateZ(2deg);
    }
}

.icon-button:active {
    transform: scale(0.8);
}

.text-button {
    background-color: transparent;
    color: var(--foreground);
    padding: 10px;
    margin: 0 2px;
}

.text-button:hover {
    color: var(--secondary);
}

.pill-button {
    background-color: var(--foreground);
    color: var(--background);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 0 2px;
}

.pill-button:hover {
    background-color: var(--secondary);
    transition: 0.5s ease;
    cursor: pointer;
}

.morphism-button {
    font-family: monospace;
    font-size: 1.2rem;
    color: #FAFAFA;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #FAFAFA;
    background: #252525;
    box-shadow: 3px 3px #fafafa;
    cursor: pointer;
    margin: 15px 0;
}

.morphism-button:active {
    box-shadow: none;
    transform: translate(3px, 3px);
}

/*!HOME*/
.home {
    padding: 100px;
    border-bottom: 1px solid var(--textColorVariant);
    height: calc(100vh - 77px);
}

.home h1 {
    margin: 30px 0;
    font-size: 15vh;
}

.home a {
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
}

.home p {
    color: var(--textColor);
}

.half {
    width: 50%;
}

.blob1 {
    background-color: var(--secondary);
    height: 33%;
    width: 100%;
    border-radius: 45%;
}

.blob2 {
    background-color: var(--tertiary);
    height: 67%;
    width: 100%;
    border-radius: 45%;
}

.blob2 img {
    margin-top: 30%;
}

.blob1 h2, .blob4 h2 {
    font-size: 9vh;
    overflow-y: clip;
}

.blob3 {
    background-color: var(--quartenary);
    height: 100%;
    width: 100%;
    border-radius: 45% 45% 20% 20%;
}

.blob4 {
    background-color: var(--textColorVariant);
    height: 45%;
    width: 100%;
    border-radius: 45%;
    margin-top: -45%;
}

.intro p {
    margin-top: 10px;
    margin-bottom: 25px;
}

/*!PARTNERS*/
.partners {
    padding: 10px 100px;
    border-bottom: 1px solid var(--textColorVariant);
}

.partners ul {
    overflow: hidden;
}

.partners ul li span {
    font-size: 4vw;
    font-family: "Barrio", serif;
    font-weight: 400;
    font-style: normal;
    color: var(--textColor);
}

/*!FEATURES*/
.features {
    padding: 15px 100px;
}

.features ul {
    padding: 50px 0;
}

.block-colour {
    background: linear-gradient(120deg, #d21404 0%, #F1592A 100%);
    padding: 20px;
    transition: all 0.5s ease;
    border-radius: 12px 12px 0 0;
    color: white;
}

.coloured-card {
    background: linear-gradient(120deg, #d21404 0%, #F1592A 100%);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.5s ease;
    color: white;
}

.coloured-card span {
    font-size: 48px;
}

.coloured-card h3 {
    margin: 10px 0;
}

.pointer:hover {
    cursor: pointer;
    color: var(--primary);
}

/*!BLOG*/
.card-article {
    background-color: var(--background);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.max-lines {
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 3.3em;
    line-height: 1.1em;
}

.one-line {
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 1.1em;
    line-height: 1.1em;
}


.topLeft {
    margin-top: 4px;
    margin-left: 5px;
}

.columnStart {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

.tag {
    align-content: flex-start;
    margin-top: 4px;
}

.viewer {
    padding-left: 20%;
    padding-right: 20%;
    transition: all 0.3s;
    color: var(--textColor);
    min-height: calc(100vh - 70px);
}

.viewer a {
    color: var(--primary);
}

.viewer a:hover {
    color: var(--secondary);
}

/*!ADMIN*/
.content-admin {
    height: calc(100vh - 77px);
    overflow: hidden;
}

.content-admin nav {
    width: 180px;
    height: 100%;
    border-right: 1px solid var(--textColorVariant);
    overflow-y: auto;
}

.content-admin nav li {
    padding: 10px;
    border-radius: 24px;
    color: var(--textColor);
    margin: 1px;
}

.content-admin nav li:hover {
    color: var(--secondary);
    background-color: var(--primary10);
    cursor: pointer;
    transition: ease 0.3s;
}

.content-admin nav li.active {
    color: var(--background);
    background-color: var(--secondary);
}

.content-admin nav .material-symbols-rounded {
    margin-right: 10px;
}

.admin {
    width: calc(100% - 180px);
    height: 100%;
}

.index-admin {
    width: 100%;
}

/*ADMIN AUTH*/
.auth-admin {
    background-color: var(--primary10);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-admin .pill-button {
    margin-top: 5px;
}

.content-group {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

/*!SNACKBAR*/
/*snackbar*/
#snackbar {
    visibility: hidden;
    min-width: 250px;
    max-width: 40vw;
    background-color: var(--quartenary);
    color: var(--background);
    text-align: center;
    border-radius: 24px;
    padding: 16px;
    position: fixed;
    z-index: 7;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 30px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/*!TABLES*/
table {
    height: calc(100% - 8px);
    width: calc(100% - 8px);
    border-collapse: collapse;
    display: inline-table;
    margin: 5px;
}

thead, tbody {
    display: flex;
    flex-direction: column;
}

thead {
    background-color: var(--secondary);
}

tbody tr:nth-child(even) {
    background-color: var(--primary10);
    color: var(--primary);
}

tr {
    display: flex;
    flex-direction: row;
    width: 100%;
}

th, td {
    display: block;
    text-align: left;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

td {
    color: var(--textColor);
    border-bottom: 1px solid var(--textColorVariant);
    padding: 5px;
}

th {
    padding: 10px 5px;
}

tr:hover {
    cursor: pointer;
    border-bottom-color: var(--tertiary);
}

.bookings-table th, .bookings-table td {
    width: calc(100% / 9);
}

.finance-table {
    width: 80%;
}

.finance-table th, .finance-table td {
    width: calc(100% / 8);
}

.checkout-button {
    width: 100%;
    align-self: flex-start;
}

/*COLORS*/
.successful {
    background-color: #22c55e;
    color: white;
}

.failed {
    background-color: #ff4d4d;
    color: white;
}

.pending {
    background-color: #f0ad4e;
    color: white;
}

/*!INPUTS*/
/*!RADIO INPUTS*/
.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0.5rem;
    background-color: #EEE;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    padding: 0.25rem;
    font-size: 14px;
    margin: 2px;
}

.radio-inputs .radio {
    flex: 1 1 auto;
    text-align: center;
}

.radio-inputs .radio input {
    display: none;
}

.radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: none;
    padding: .5rem 0;
    color: rgba(51, 65, 85, 1);
    transition: all .15s ease-in-out;
}

.radio-inputs .radio input:checked + .name {
    background-color: #fff;
    font-weight: 600;
}

/*!FILTER INPUTS*/
.filter-inputs {
    display: flex;
    line-height: 30px;
    align-items: center;
    position: relative;
}

.filter-inputs input {
    width: 180px;
    height: 45px;
    line-height: 30px;
    padding: 5px 10px;
    border: 2px solid transparent;
    border-radius: 32px;
    outline: none;
    background-color: #EEE;
    color: #0d0c22;
    transition: .5s ease;
    margin: 0 2px;
}

.filter-inputs input::placeholder {
    color: #94a3b8;
}

.filter-inputs input:focus, input:hover {
    outline: none;
    border-color: var(--secondary);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(248, 129, 129, 0.3);
}

/*!FILTER INPUTS*/
.outlined-inputs {
    display: flex;
    line-height: 30px;
    align-items: center;
    position: relative;
}

.outlined-inputs input {
    width: 180px;
    height: 45px;
    line-height: 30px;
    padding: 5px;
    border: 1px solid var(--textColorVariant);
    border-radius: 10px;
    outline: none;
    color: #0d0c22;
    transition: .5s ease;
    margin: 0 2px;
}

.outlined-inputs input::placeholder, .tournament-settings input::placeholder, .tournament-input::placeholder {
    color: #94a3b8;
}

.outlined-inputs input:focus, input:hover, .tournament-settings input:focus, .tournament-settings input:hover, .tournament-input:focus, .tournament-input:hover {
    outline: none;
    border-color: var(--secondary);
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(248, 129, 129, 0.3);
}

.outlined-icon-button {
    border-radius: 25px;
    border: 1px solid var(--textColorVariant);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    flex-direction: row;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
}

.outlined-icon-button img {
    margin-right: 10px;
}

.line-text {
    position: relative;
    margin-top: 30px;
    margin-bottom: 50px;
}

.line-text span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background);
    padding: 0 10px;
}

/*!CHARTS*/
.charts {
    width: 100%;
    height: 350px;
    margin: 10px 0;
}

.canvas {
    width: 100%;
    height: 334px;
    padding: 4px 0;
}

/*!BOOKINGS*/
.booking {
    height: calc(100vh - 77px);
    width: 100vw;
    background-color: var(--textColorVariant);
}

.booking-group {
    display: flex;
    flex-direction: column;
    margin: 10px;
    align-items: center;
}

.pill-span {
    padding: 2px 4px;
    border-radius: 4px;
}

.booking .filter-inputs, .booking .pill-button {
    width: 250px;
    margin: 5px 0;
}

.booking .coloured-card {
    margin: 5px;
}

.cart-item {
    margin-top: 5px;
    color: var(--textColor);
}

/*MAIN AUTHENTICATION*/
.auth-group {
    width: 80%;
    height: 100%;
    padding: 100px 200px;
}

.auth-inner-group {
    width: 40%;
}

.auth-inner-group .outlined-inputs, .outlined-inputs input {
    width: 100%;
}

.input-title {
    font-weight: bold;
    margin-left: 8px;
}

.auth-inner-group .pill-button {
    width: 100%;
    margin: 20px 0;
}

/*PROFILE IMAGE PICKER*/
.logo {
    position: relative;
    border: 1px solid var(--textColorVariant);
    border-radius: 50%;
    display: flex;
    align-self: center;
}

.photo {
    position: relative;
    border: 1px solid var(--textColorVariant);
    display: flex;
    align-self: center;
}

/*!LOCATIONS*/
.locations-table th, .locations-table td {
    width: 10%;
}

.locations-table th:nth-child(3), .locations-table td:nth-child(3) {
    width: 9%;
}

.locations-table th:nth-child(6), .locations-table td:nth-child(6), .locations-table th:nth-child(5), .locations-table td:nth-child(5) {
    width: 7%;
}

.locations-table th:nth-child(8), .locations-table td:nth-child(8), .locations-table th:nth-child(9), .locations-table td:nth-child(9), .locations-table th:nth-child(7), .locations-table td:nth-child(7) {
    width: 19%;
}

.locations-content .filter-inputs span {
    font-size: 0.5rem;
    margin-bottom: -24px;
    z-index: 2;
}

.fixtures-table th, .fixtures-table td {
    width: 11%;
}

.fixtures-table th:nth-child(8), .fixtures-table td:nth-child(8),
.fixtures-table th:nth-child(9), .fixtures-table td:nth-child(9) ,
.fixtures-table th:nth-child(10), .fixtures-table td:nth-child(10) ,
.fixtures-table th:nth-child(11), .fixtures-table td:nth-child(11) {
    width: 5.75%;
}

.tournament-table th, .tournament-table td {
    width: 7.78%;
}

.tournament-table th:nth-child(3), .tournament-table td:nth-child(3),
.tournament-table th:nth-child(4), .tournament-table td:nth-child(4){
    width: 15%;
}

/*!LIVE*/
.score {
    font-family: "Nova Square", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10rem;
    width: 166px;
    text-align: center;
}

.live-block {
    background-color: var(--textColor);
    width: 12px;
    height: 40px;
}

.left-block {
    margin-left: 20%;
}

.right-block {
    margin-left: calc(60% - 24px);
}

.bordered-block {
    border: 15px solid var(--textColor);
    padding: 10px;
    border-radius: 8px;
}

.line-dash {
    border: 10px dashed var(--textColor);
    width: 0;
    height: 100%;
}

.live-list {
    width: 80%;
    height: 100%;
    overflow-y: scroll;
}

.live-list ul {

}

.game-event {
    width: 20%;
    border-left: 1px solid var(--textColorVariant);
}

/*!BLOG*/
.blog-list, .support-list {
    width: 20%;
    padding: 5px;
    background-color: var(--textColorVariant);
    height: calc(100vh - 77px);
    overflow-y: scroll;
}

.blog-editor {
    width: 80%;
    padding: 5px;
}

.blog-editor ul li {
    border-radius: 4px;
    margin-top: 10px;
}

.blog-editor ul li:hover {
    color: #ffffff;
    background-color: var(--secondary);
}

.blog-editor input, .typing-box {
    width: 100%;
    line-height: 30px;
    padding: 5px 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    outline: none;
    background-color: #EEE;
    color: #0d0c22;
    transition: .5s ease;
    margin: 5px 2px;
}

.typing-box {
    height: calc(100vh - 330px);
    margin-bottom: 10px;
    overflow-y: scroll;
}

.support-editor {
    width: 40%;
}

.support-chat {
    padding: 5px 0;
}

.support-chat, .support-editor textarea {
    flex-grow: 1;
}

.support-chat li {
    cursor: pointer;
}

/*!CHAT BOX*/
.chat-box {
    border: 1px solid var(--textColorVariant);
    border-radius: 8px;
}

.chat-box textarea {
    border: none;
    padding: 10px;
    font-size: 12px;
    resize: none;
}

.message-send {
    background-color: #7F7BF8;
    color: white;
    padding: 10px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 1;
    display: flex;
    max-width: 50%;
    min-width: 25%;
    margin-top: 5px;
    align-self: end;
}

.message-receive {
    background-color: black;
    color: #F8F8F8;
    padding: 10px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    flex-shrink: 1;
    display: flex;
    align-self: start;
    max-width: 50%;
    min-width: 25%;
    margin-top: 5px;
}

.message-date {
    font-size: 0.6rem;
    text-align: right;
}

.right {
    display: flex;
    justify-content: flex-end;
}

/* From Uiverse.io by abrahamcalsin */
.dot-spinner {
    --uib-size: 1.7rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {
    0%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}


/*!CALENDAR*/
.calendar {
    width: 50%;
    overflow-y: scroll;
}

.schedule {
    width: 50%;
    overflow-y: auto;
}

.calendar-div {
    width: 100%;
    height: 100%;
}

.calendar, .schedule {
    padding: 20px 10px 10px 10px;
}

.calendar-item {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    position: relative;
    flex: 0 0 14.286%;
    margin: 5px;
    max-width: calc(14.286% - 10px);
}

.selected-date {
    font-size: 12px;
}

.month-top-view-span {
    font-size: 3vh;
    font-weight: bolder;
    margin: 0 16px;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    margin: 5px 2px;
    border: 1px solid var(--textColorVariant);
    border-radius: 10px;
    padding: 5px;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 12;
    max-height: 117px;
    overflow-y: auto;
    border: 1px solid var(--primary);
    border-radius: 3px;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 10px;
    cursor: pointer;
    transition: all 0.5s;
    font-size: 12px;
    font-weight: 400;
}

.custom-option:hover {
    cursor: pointer;
    background-color: var(--textColorVariant);
    color: var(--secondary);
}

.custom-option.selected {
    color: #fff;
    background-color: var(--secondary);
}

.arrow {
    position: relative;
    height: 15px;
    width: 15px;
}

.arrow {
    margin-left: 20px;
}

.arrow::before, .arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0.15rem;
    height: 100%;
    transition: all 0.5s;
}

.arrow::before {
    left: -5px;
    transform: rotate(45deg);
    background-color: var(--textColor);
}

.arrow::after {
    left: 5px;
    transform: rotate(-45deg);
    background-color: var(--textColor);
}

.open .arrow::before {
    left: -5px;
    transform: rotate(-45deg);
}

.open .arrow::after {
    left: 5px;
    transform: rotate(45deg);
}

/*!TOURNAMENTS*/
.tournament-body {
    height: calc(100vh - 77px);
    width: 100vw;
}

.tournaments {
    padding: 2px;
    height: 100%;
    width: 100%;
}

.tournaments button {
    margin-top: 24px;
}

.tournaments, .tournament-body {
    overflow-y: hidden;
}

.tournament-view {
    overflow-y: auto;
    padding: 20px;
    width: 60%;
    border-right: 1px solid var(--textColorVariant);
}

.tournament-save {
    width: 20%;
    padding: 20px;
    overflow-y: scroll;
}

.tournament-save h4 {
    margin-top: 20px;
}

.tournament-teams {
    width: 100%;
    max-height: 20vh;
}

.tournament-teams li {
    border-bottom: 1px solid var(--textColorVariant);
}

.tournament-teams span {
    background-color: var(--secondary);
    color: white;
    border-radius: 50%;
    padding: 4px;
    margin-right: 16px;
}

.tournament-settings {
    border-right: 1px solid var(--textColorVariant);
    overflow-y: auto;
    padding: 20px;
    width: 20%;
}

.section-title {
    margin-left: 12px;
}

.tournament-settings input, .tournament-input, .tournament-settings textarea {
    width: 100%;
    padding: 5px 8px;
    border: 1px solid var(--textColorVariant);
    border-radius: 10px;
    outline: none;
    color: #0d0c22;
    transition: .5s ease;
    margin: 5px 2px;
}

.tournament-settings button {
    width: 100%;
}

.visualizer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.grouping-column {
    flex-grow: 1;
    padding: 20px;
}

.team-verse {
    padding: 5px 10px;
    font-size: 14px;
    color: white;
}

.verse-group {
    display: flex;
    flex-direction: row;
    background-color: var(--secondary);
    margin: 20px 0;
    border-radius: 8px;
}

.team-names {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.team-names hr {
    height: 1px;
    background-color: white;
    margin-right: 10px;
    border: none;
}

.teams-view {
    overflow-y: auto;
    padding: 20px;
    width: 80%;
    border-right: 1px solid var(--textColorVariant);
}

.game-round {
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--secondary);
    height: 30px;
    width: 30px;
    aspect-ratio: 1 / 1;
}

.logo {
    position: relative;
    max-width: 130px;
    aspect-ratio: 1 / 1;
}

.logo img, .team-logo {
    border-radius: 50%;
}

.team-logo {
    height: 48px;
    width: 48px;
    aspect-ratio: 1 / 1;
    margin-right: 10px;
}

.team-hr {
    height: 1px;
    background-color: var(--textColorVariant);
    margin: 5px 12px;
}

.league-table th, .league-table td {
    width: 10%;
}

.league-table th:nth-child(2), .league-table td:nth-child(2) {
    width: 30%;
}

.title-bar {
    background-color: var(--primary10);
    border-radius: 8px;
    padding: 4px 8px;
    margin-left: 8px;
    border: 1px solid var(--primary);
    font-size: 12px;
    color: var(--secondary);
    align-self: flex-start;
}

.material-symbols-rounded {
    cursor: pointer;
}

/*!CHECKBOX*/
.cyberpunk-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 5px;
    background-color: transparent;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.cyberpunk-checkbox:before {
    content: "";
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.cyberpunk-checkbox:checked:before {
    transform: translate(-50%, -50%) scale(1);
}

.cyberpunk-checkbox-label {
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.legal {
    padding: 24px 16%;
}

.live-item img {
    border-radius: 50%;
}

.live-item h3 {
    margin-top: 12px;
}

.finance-content .card-flat {
    margin: 2px 4px;
}

.blog-item span {
    width: 20%;
    overflow-x: hidden;
}

/*!ALERTS*/
.alerts-list {
    width: 80%;padding: 20px;
}

.alerts-list ul {
    padding: 5px;
}

.notification-card {
    list-style: none;
    padding: 0;
    margin: 10px;
}

.notification-card li {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.notification-body {
    color: #555;
    margin-bottom: 10px;
}

.notification-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9em;
    color: #777;
}

.notification-date {
    flex-grow: 1;
}

.notification-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.8em;
}

.notification-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-status.pending {
    background-color: #fff3cd;
    color: #85640a;
    border: 1px solid #ffeeba;
}

.dashboard-email {
    max-width: calc(100% - 24px);
    overflow-x: hidden;
}

.booking-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.sidebar {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.main-content {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.counter-button {
    background-color: transparent;
    padding: 4px;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    margin: 0 10px;
}

.counter-button:hover {
    background-color: var(--primary);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Explicitly set 5 columns */
    gap: 6px; /* Reduced gap */
    margin-top: 6px; /* Slightly reduced top margin */
}

.slot-item {
    padding: 12px; /* Reduced padding */
    border-radius: 0.3rem; /* Slightly reduced border radius */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
    font-size: 0.9rem; /* Optional: reduce font size for smaller items */
}

.slot-item:hover {
    border-color: var(--primary-light);
}

.slot-item.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slot-item.booked {
    background-color: var(--gray-light);
    color: var(--gray);
    cursor: not-allowed;
}

.summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-light);
}

/*!MEDIA QUERIES*/
/*LAYOUT SIZES*/
@media screen and (min-width: 1px) {
    .three-objects, .one-objects, .six-objects, .partners li, .features li, .article-item, .product-item, .cart-item, .price-item, .live-item, .blog-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 5px;
    }
    .seven-objects {
        flex: 1 0 33.333%;
        max-width: calc(50% - 20px);
        margin: 10px;
    }
    .faqs li {
        padding: 20px;
        margin: 5px;
        width: 100%;
    }
    .faqs h2 {
        font-size: 0.7vh;
        overflow-y: clip;
    }
    .topbottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .charts {
        display: flex;
        flex-direction: column;
        height: 1050px;
    }
    .chart {
        width: 100%;
        height: 350px;
        margin: 5px;
    }
    .booking-body nav, .booking-body .image-button {
        display: none;
    }
    .booking-body .main-content, .booking-body .sidebar, .dashboard-side, .dashboard-center {
        width: 100%;
        max-width: 100%;
    }
    .date-scroller, .slot-grid {
        max-height: 50vh;
    }
    .dashboard-container {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 640px) {
    .partners li, .features li, .article-item, .product-item, .price-item, .live-item {
        flex: 0 0 50%;
        margin: 10px;
        max-width: calc(50% - 20px);
    }
    .six-objects {
        flex: 1 0 33.333%;
        max-width: calc(50% - 20px);
        margin: 10px;
    }
    .faqs h2 {
        font-size: 1.5vh;
        overflow-y: clip;
    }
    .booking-body nav, .booking-body .image-button {
        display: flex;
    }
}

@media screen and (min-width: 960px) {
    .faqs li, .partners li, .features li, .article-item, .product-item, .price-item {
        flex: 1 0 33.333%;
        max-width: calc(33.333% - 20px);
        margin: 10px;
    }
    .six-objects, .seven-objects {
        flex: 1 0 25%;
        max-width: calc(25% - 10px);
        margin: 5px;
    }
    .three-objects {
        flex: 1 0 50%;
        max-width: calc(50% - 10px);
        margin: 5px;
    }
    .faqs h2 {
        font-size: 2vh;
        overflow-y: clip;
    }
    .topbottom {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .date-scroller, .slot-grid {
        max-height: 100%;
    }
}

@media screen  and (min-width: 1280px){
    .faqs h2 {
        font-size: 3vh;
        overflow-y: clip;
    }
    .six-objects {
        flex: 1 0 16.667%;
        max-width: calc(16.667% - 10px);
        margin: 5px;
    }
    .features li, .article-item, .price-item {
        flex: 1 0 20%;
        max-width: calc(20% - 20px);
        margin: 10px;
    }
    .article-item, .live-item {
        flex: 1 0 25%;
        max-width: calc(25% - 10px);
        margin: 5px;
    }
    .three-objects, .live-item {
        flex: 1 0 33.3%;
        max-width: calc(33.3% - 10px);
        margin: 5px;
    }
    .seven-objects {
        flex: 1 0 14.287%;
        max-width: calc(14.287% - 10px);
        margin: 5px;
    }
    .charts {
        display: flex;
        flex-direction: row;
        height: 350px;
    }
    .chart {
        width: 33.3%;
        height: 100%;
        margin: 5px;
    }
    .main-content {
        max-width: 100%;
    }
    .dashboard-container {
        display: flex;
        flex-direction: row;
    }
    .dashboard-center {
        width: 50%;
        max-width: 50%;
    }
    .dashboard-side {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .date-scroller {
        gap: 12px;
    }

    .date-item {
        min-width: 70px;
        padding: 12px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.date-scroller {
    display: flex;

    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 6px;
    scrollbar-width: thin;
}

.date-scroller::-webkit-scrollbar {
    height: 6px;
}

.date-scroller::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 3px;
}

.date-scroller::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 3px;
}

.date-item {
    padding: 6px;
    border-radius: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
}

.date-item:hover {
    border-color: var(--primary-light);
}

.date-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.date-item .day {
    font-size: 0.75rem;
    opacity: 0.7;
}

.date-item .date {
    font-weight: 600;
    margin: 12px 0;
}

.pill {
    padding: 6px 12px;
    border-radius: 24px;
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.pill:hover {
    background-color: var(--primary-dark);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Explicitly set 5 columns */
    gap: 6px; /* Reduced gap */
    margin-top: 6px; /* Slightly reduced top margin */
}

.slot-item {
    padding: 12px; /* Reduced padding */
    border-radius: 0.3rem; /* Slightly reduced border radius */
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--gray-light);
    background-color: white;
    font-size: 0.9rem; /* Optional: reduce font size for smaller items */
}

.slot-item:hover {
    border-color: var(--primary-light);
}

.slot-item.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.slot-item.booked {
    background-color: var(--gray-light);
    color: var(--gray);
    cursor: not-allowed;
}

.summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.summary-total {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-light);
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--gray-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.alert {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    max-width: 350px;
    width: 90%;
    text-align: center;
}

.alert-success {
    background-color: #e6ffe6;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.alert-error {
    background-color: #ffe6e6;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.alert-summary-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    margin-bottom: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 8px 0;
}

.alert-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.alert-pill-button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.alert-pill-button.secondary-button {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.alert-pill-button:hover {
    opacity: 0.9;
}
