/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --bg-color: #ffffff;
    --light-bg: #f9fafb;
    --dark-bg: #111827;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.map-section{
    padding: 0px 0px !important;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0; /* Reduced height */
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


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

.logo img {
    height: auto;
    width: 100px;
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}


/* Slider Styles */
.slider-container {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    max-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider {
    
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 400px;
}
.slide h1 {
    position: absolute;
    left: 10%;
    top: 30%;
    transform: translateY(-50%);
    color: rgb(0, 0, 0);
    font-size: 4rem;
    font-weight: 700;
    font-family: "Libertinus Sans", sans-serif;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    z-index: 5;
    width: 40%;
    max-width: 500px;
    animation: fadeInLeft 1s ease;
}
.slide {
    position: relative; /* Ensure this is set for absolute positioning of children */
    display: flex;
    align-items: center;
    min-width: 100%;
    height: 100%;
    position: relative;
    transition: opacity 0.5s ease;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-container {
        max-height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        padding: 0.8rem;
    }
}
/* Hero Section */
/* .hero {
    padding-top: 150px;
    background-color: var(--light-bg);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
} */
/* Hero Section with Background Image */
.hero {
    padding-top: 150px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('assets/banner_1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Adjust button colors for light background */
.hero .btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.hero .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}
/* Services Section */
.services {
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-content {
    flex: 1;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.about-list i {
    color: var(--primary-color);
}

/* Team Section */
.team {
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background-color: rgba(37, 99, 235, 0.8);
    transition: bottom 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

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

.social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.team-member h3 {
    margin-top: 20px;
}

.team-member p {
    color: var(--primary-color);
    font-weight: 500;
}

.team-content {
    padding: 20px;
    text-align: center;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
}

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

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
}

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

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 80px 0 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    margin-top: 3px;
    color: var(--primary-color);
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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






/*CAREER PAGE CSS*/

/* Careers Page Styles */
.careers-main {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    
}

/* Search Section */
.careers-search {
    /* background-color: #2c3e50; */
    color: #2c3e50;
    padding: 0rem 0;
    text-align: center;
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;

}

.search-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.search-bar {
    display: flex;
    margin-bottom: 1.5rem;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 12px;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
}

.search-bar button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #2980b9;
}

.filter-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    
}

.filter-options select {
    padding: 0.5rem;
    border-radius: 4px;
    border: none;
    background-color: white;
    color: #333;
    
}
/* Add to your CSS */
.no-jobs-message {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: #666;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}
#jobsList:empty + .no-jobs-message {
    display: block;
}

/* Hide no jobs message when there are jobs */
#jobsList:not(:empty) + .no-jobs-message {
    display: none;
}


/* Job Listings Section */
.job-listings {
    padding: 1rem 0;
}

.jobs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.jobs-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.job-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.job-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-header h3 {
    color: #2c3e50;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.job-type {
    background-color: #e8f4fc;
    color: #3498db;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-location {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.job-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.job-skills span {
    background-color: #f0f0f0;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.apply-btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        border-radius: 12px;
        border: 2px solid #000000;
    }
    
    .search-bar input {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        border-radius: 10px 10px 0 0;
        /* border-radius: 4px;
        margin-bottom: 0.5rem;
        border: 1px solid #ddd; */
    }
    
    .search-bar button {
        padding: 15px;
        justify-content: center;
        border-radius: 0 0 10px 10px;
        /* border-radius: 4px;
        justify-content: center; */
    }
    
    .filter-options {
        flex-direction: column;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Application Modal Styles */
.application-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.application-form label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: white;
    padding: 0 5px;
    font-size: 0.9rem;
    color: #3498db;
}

.application-form input,
.application-form select {
    width: 95%; 
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.application-form input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
}

.file-upload {
    padding: 1rem;
    border: 1px dashed #ddd;
    border-radius: 4px;
    text-align: center;
   
    margin-bottom: 1.5rem;
}

.file-upload input[type="file"] {
    display: none;
    
}

.file-upload label {
    display: block;
    cursor: pointer;
    color: #666;
    margin-bottom: 0.5rem;
}

.file-name {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}


/* Contact Page Styles */
.contact-hero {
    background-size: cover;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    /* margin-top: 80px; */
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info1 {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* .contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
} */
/* Logo Styles */
.contact-logo {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 30px;
}

.contact-logo img {
    max-width: 200px; /* Adjust this to your preferred size */
    height: auto;
    border-radius: 8px; /* Optional: adds rounded corners */
}
.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-method p {
    color: var(--light-text);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
}



/* Career Page Banner */
.page-banner {
    position: relative;
    height: 60vh; /* Use 100vh for full screen */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* keeps text on the left */
    padding: 0 8%;
    color: #fff;
    overflow: hidden;
}

.page-banner .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* dark overlay for text readability */
    z-index: 1;
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.page-banner .banner-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.page-banner .banner-subtitle {
    font-size: 1.2rem;
    margin-top: 280px;
    color: white;
    text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-banner .banner-content h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        text-align: center;
        justify-content: center;
        padding: 0 5%;
    }
    .page-banner .banner-content h1 {
        font-size: 2rem;
    }
    .page-banner .banner-subtitle {
        font-size: 1rem;
    }
}

/* Optional: Add some decorative elements */
.page-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0;
        margin-top: 70px;
    }
    .page-banner .banner-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 60px 0;
    }
    .page-banner .banner-content h1 {
        font-size: 28px;
    }
}

/* ===== Professional Submit Button Styling ===== */
.submit-btn {
  background: linear-gradient(135deg, #0052cc, #007bff); /* Gradient blue */
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
  letter-spacing: 0.5px;
  width: 100%;
  max-width: 280px;
  margin: 20px auto 0;
  display: block;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0041a8, #006ae0);
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.4);
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 82, 204, 0.2);
}

.submit-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  box-shadow: none;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #323232;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 1000;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

@keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to { bottom: 0; opacity: 0; }
}


