

body {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo img {
    height: 70px;
}
.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}
.nav-links a, .user-link {
    text-decoration: none !important; /* Erzwingt das Entfernen der Unterstreichung */
}
.nav-links li {
    font-size: 1rem;
}

/* Connexion Button */
.connexion-btn {
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.connexion-btn:hover {
    background-color: #0056b3;
}
/* Benutzer-Links im Header */
.user-link {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.user-link:hover {
    color: #007bff;
}

/* Dropdown-Icon */
.dropdown-icon {
    font-size: 0.9rem;
    color: #555;
    transition: transform 0.3s ease;
}

.user-link:hover .dropdown-icon {
    color: #007bff;
    transform: rotate(180deg);
}

/* Dropdown-Menü */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    list-style: none;
    position: absolute;
    display: none;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown-Items */
.dropdown-item {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto; /* Anpassung für flexiblere Höhe */
    background-color: #E8EFFD;
    padding: 20px 20px 10px; /* Weniger Abstand nach unten */
    text-align: center;
    margin-bottom: 20px; /* Geringerer Abstand zur nächsten Sektion */
}

.main-content h1 {
    font-size: 2rem;
    color: #001f42;
    margin-bottom: 10px;
    font-weight: 700;
}

.intro-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px; /* Weniger Abstand zur Suchleiste */
    max-width: 500px;
    line-height: 1.5;
}

/* Search Form */
.search-form {
    width: 100%;
    max-width: 500px;
}

.search-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
    margin-bottom: 10px; /* Abstand nach unten minimiert */
}

.search-container:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.search-container input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1rem;
    outline: none;
    color: #333;
    background-color: transparent;
}

.search-container input::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

.search-container button {
    background-color: #007bff;
    border: none;
    padding: 12px 18px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-container button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.search-container button i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content h1 {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 0.9rem;
    }

    .search-container input {
        font-size: 0.9rem;
    }

    .search-container button {
        font-size: 1rem;
    }
}
















/* Data Cards Section */
.data-cards {
    padding: 20px 20px;
    text-align: center;
}

.data-cards h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background-color: #E8EFFD;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px; /* Optional for equal height cards */
}

.card-icon {
    width: 48px; /* Make the icon smaller */
    height: 48px;
    margin-bottom: 10px; /* Reduce space below the icon */
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
}

.card p {
    font-size: 1rem;
    color: #555;
    margin-top: auto; /* Push the text content to the bottom */
}

/* Stats Section */
.stats-section {
    padding: 50px 20px;
    text-align: center;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
    font-weight: 700;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    opacity: 0.8; /* Leicht transparent */
}

.stat h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat p {
    font-size: 1rem;
    color: #555;
}

/* Documents Section */
.documents-section {
    background-color: #E8EFFD; /* Leichter blauer Hintergrund */
    padding: 20px 30px;
    border-radius: 12px;
    margin: 40px auto; /* Zentrierung der Section */
    width: 1200px; /* Feste Breite */
    height: 371px; /* Begrenzte Höhe */
    display: flex;
    align-items: center; /* Vertikale Zentrierung des Inhalts */
    justify-content: space-between; /* Platz zwischen Text und Bild */
    box-sizing: border-box; /* Sicherstellen, dass Padding die Gesamtgröße nicht überschreitet */
    overflow: hidden; /* Inhalte außerhalb des Containers ausblenden */
}

.text-content {
    flex: 1;
    max-width: 50%; /* Begrenzung des Textbereichs */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikale Zentrierung des Texts */
    overflow: hidden; /* Text bleibt im Container */
}

.text-content h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
    line-height: 1.4; /* Kompaktere Zeilenhöhe */
}

.text-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.try-now-btn {
    padding: 10px 20px;
    background-color: #4A69BD;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 211px; /* Feste Breite */
    height: 42px; /* Feste Höhe */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    text-align: center; /* Text zentriert */
}

.try-now-btn:hover {
    background-color: #3b5498; /* Leicht dunklere Hover-Farbe */
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden; /* Bild bleibt im Container */
}

.documents-image {
    max-width: 250px; /* Bildbreite */
    height: auto;
    border-radius: 10px;
}
/* ✅ Standard-Styling bleibt gleich */

/* 🔻 Mobile Optimierung für kleine Displays */
@media (max-width: 768px) {
    .documents-section {
        flex-direction: column;
        text-align: center;
        padding: 20px; /* Weniger Padding für kompakte Darstellung */
        height: auto; /* Automatische Höhe für kleinere Geräte */
        width: 100%; /* Volle Breite, kein Scrollen */
        border-radius: 8px; /* Etwas kleinere Abrundung */
    }

    .text-content {
        max-width: 100%;
        padding-bottom: 15px;
    }

    .text-content h2 {
        font-size: 1.4rem; /* Kleinerer Titel für bessere mobile Darstellung */
    }

    .text-content p {
        font-size: 0.9rem; /* Kompakterer Text */
    }

    .try-now-btn {
        width: auto; /* Breite an Inhalt anpassen */
        font-size: 0.9rem; /* Kleinere Schriftgröße */
        padding: 8px 15px; /* Weniger Padding für kompaktere Buttons */
    }

    .image-content {
        justify-content: center;
    }

    .documents-image {
        max-width: 70%; /* Kleinere Bilder für Handys */
        height: auto;
    }
}

/* 🔻 Tablet-Optimierung für mittlere Displays */
@media (max-width: 1024px) {
    .documents-section {
        padding: 25px;
        height: auto;
        width: 95%; /* Leichte Reduzierung für bessere Darstellung */
    }

    .documents-image {
        max-width: 80%; /* Etwas kleiner für Tablets */
    }
}



/* Info Section */
.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.info-container {
    display: flex;
    width: 1045px; /* Gleiche Breite wie die vorherige Section */
    align-items: center;
    gap: 40px; /* Abstand zwischen Bild und Text */
}

.info-container .image-content {
    flex: 1; /* Bild nimmt die gleiche Breite wie der Text */
}

.info-container .info-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optionale Abrundung der Ecken */
}

.info-container .text-content {
    flex: 1;
}

.info-container .text-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

.info-container .text-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Updated Button Styling */
.info-btn {
    display: inline-block;
    width: 211px;
    height: 42px;
    background-color: #4A69BD;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    line-height: 42px; /* Vertikale Zentrierung */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.info-btn:hover {
    background-color: #3b5393;
}

.larger-image .documents-image {
    max-width: 400px; /* Größere Breite für pic3 */
    height: auto;
    border-radius: 10px;
}
/* 🔻 Optimierung für Handys */
@media (max-width: 768px) {
    .info-section {
        padding: 20px; /* Kompakterer Abstand */
        text-align: center; /* Text zentrieren */
    }

    .info-container {
        flex-direction: column-reverse; /* Bild unter den Text setzen */
        align-items: center;
    }

    .info-image {
        max-width: 70%; /* Bild verkleinern */
        height: auto;
        margin-top: 15px; /* Abstand nach oben */
    }

    .text-content {
        max-width: 100%;
        padding-bottom: 10px;
    }

    .text-content h2 {
        font-size: 1.4rem; /* Kleinere Schrift für bessere mobile Darstellung */
    }

    .text-content p {
        font-size: 0.9rem; /* Kompakterer Text */
    }

    .info-btn {
        font-size: 0.85rem; /* Kleinere Schrift */
        padding: 8px 12px; /* Kompakteres Padding */
        width: auto; /* Automatische Breite */
        height: 40px; /* Feste Höhe für perfekte Zentrierung */
        display: flex;
        align-items: center; /* Text vertikal mittig */
        justify-content: center; /* Text horizontal mittig */
        text-align: center;
    }
}

/* 🔻 Tablet-Optimierung */
@media (max-width: 1024px) {
    .info-container {
        width: 95%; /* Leichte Reduzierung für bessere Darstellung */
    }

    .info-image {
        max-width: 80%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #222;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.accordion-title {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.accordion-title:hover {
    background-color: #e8effd;
}

.accordion-content {
    display: none;
    padding: 15px 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    display: block;
}




/*RESULTS.HTML*/


/* Results Section */
.results-container {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.results-list {
    margin-top: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.result-text {
    flex-grow: 1;
    line-height: 1.6;
}

.result-text h3 {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 5px;
}

.result-text p {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #555;
}

/* Status-Punkte (nur farbige Kreise) */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-active {
    background: #28a745; /* Grün für Actif */
}

.status-closed {
    background: #dc3545; /* Rot für Fermé */
}

/* Status-Text */
.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-right: 15px;
}

/* Moderner Button */
.select-btn {
    padding: 8px 14px;
    background: #007bff;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.select-btn:hover {
    background: #0056b3;
}
@media (max-width: 768px) {

    .result-item {
        display: flex;
        flex-direction: row; /* Elemente bleiben in einer Zeile */
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
    }

    .result-text {
        flex-grow: 1; /* Nutzt den gesamten verfügbaren Platz */
        max-width: 65%; /* Verhindert, dass Text zu breit wird */
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .result-text h3 {
        font-size: 1rem; /* Kleinere Titel für bessere Lesbarkeit */
        white-space: normal;
    }

    .result-text p {
        font-size: 0.85rem;
    }

    /* 🔹 Actions (Button + Status) bleibt RECHTS */
    .result-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 8px; /* Erhöht den Abstand zwischen Status & Button */
    }
    /* Choisir Button größer & besser klickbar */
    .select-btn {
        font-size: 14px;
        padding: 6px 12px;
        text-align: center;
        width: auto; /* Kein Vollbild-Button */
        margin-top: 5px;
    }

    /* ✅ Punkt + Status in einer Zeile */
    .status-container {
        margin-bottom: 5px;
        display: flex;
        align-items: center; /* Punkt & Text PERFEKT nebeneinander */
        gap: 5px; /* Minimaler Abstand */
    }

    /* 🔹 Status-Punkt leicht kleiner für bessere Anpassung */
    .status-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        flex-shrink: 0; /* Punkt bleibt immer gleich groß */
    }

    /* 🔹 Status-Text (Actif/Fermé) bleibt immer daneben */
    .status-text {
        font-size: 0.85rem;
        font-weight: 600;
    }
}
/* 💻 Desktop-Optimierung (Actif/Fermé soll nicht in den Button rutschen) */
@media (min-width: 769px) {
    .result-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start; /* Sorgt dafür, dass Status & Button nicht übereinanderliegen */
        gap: 10px; /* Erhöht den Abstand */
    }

    /* ✅ Statuspunkt (Actif/Fermé) weiter nach oben setzen */
    .status-container {
        position: relative;
        top: -5px; /* Verschiebt den Status leicht nach oben */
    }

    /* ✅ Punkt bleibt exakt neben dem Text */
    .status-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        flex-shrink: 0;
        margin-right: 6px;
    }

    /* ✅ Button bleibt perfekt ausgerichtet */
    .select-btn {
        font-size: 14px;
        padding: 8px 14px;
        text-align: center;
        width: auto;
        margin-top: 5px;
    }
}

/* Trenner */
.divider {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}





/*contact*/

/* Contact Form Container */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Header */
.contact-form h2 {
    font-size: 1.8rem;
    color: #001f42;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Group */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

.contact-form .form-group textarea {
    resize: none;
    height: 120px;
}

/* Submit Button */
.contact-submit button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.contact-submit button:hover {
    background-color: #0056b3;
}

/* Contact Info */
/* Contact Header */
.contact-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #001f42;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1rem;
    color: #555;
    margin-top: 0;
}
.contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #001f42;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

.contact-info i {
    color: #007bff;
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-submit button {
        font-size: 0.9rem;
        padding: 10px;
    }
}




































/* Footer Styles */
.footer {
    background-color: #E8EFFD;
    color: #000; /* Textfarbe geändert zu Schwarz */
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1;
    max-width: 50%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
    color: #000; /* Textfarbe des Logos geändert zu Schwarz */
}

.footer-logo h5 {
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo .footer-icon {
    fill: #000; /* Iconfarbe geändert zu Schwarz */
    width: 32px;
    height: 32px;
}

.footer-left p {
    margin-bottom: 15px;
    color: #000; /* Textfarbe geändert zu Schwarz */
}

.payment-methods img {
    width: 40px;
    margin-right: 10px;
}

.footer-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000; /* Überschriftfarbe geändert zu Schwarz */
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #000; /* Linkfarbe geändert zu Schwarz */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #4A69BD; /* Hover-Farbe angepasst */
}

/* ================================== */
/* 📱 RESPONSIVE FOOTER OPTIMIERUNG  */
/* ================================== */

@media (max-width: 1024px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-logo h5 {
        font-size: 1.1rem;
    }

    .footer-left p {
        font-size: 0.95rem;
        max-width: 90%;
        margin: 0 auto 15px;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 10px;
    }

    .payment-methods img {
        width: 35px;
        margin: 0 5px;
    }

    .footer-right {
        justify-content: center;
        margin-top: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links h6 {
        font-size: 1rem;
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-links ul li {
        font-size: 0.9rem;
    }
}

/* ✅ Extra Optimierung für Smartphones */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-left, .footer-right {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo h5 {
        font-size: 1rem;
    }

    .footer-left p {
        font-size: 0.9rem;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-methods img {
        width: 30px;
        margin: 5px;
    }

    .footer-right {
        margin-top: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links h6 {
        font-size: 0.95rem;
    }

    .footer-links ul li {
        font-size: 0.85rem;
    }
}

/* ✅ Extra für sehr kleine Geräte */
@media (max-width: 480px) {
    .footer {
        padding: 20px 10px;
    }

    .footer-logo h5 {
        font-size: 0.9rem;
    }

    .footer-left p {
        font-size: 0.85rem;
    }

    .payment-methods img {
        width: 28px;
    }

    .footer-links h6 {
        font-size: 0.9rem;
    }

    .footer-links ul li {
        font-size: 0.8rem;
    }
}





.dashboard-actions {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-actions li {
    font-size: 1.2rem;
    text-align: center;
}

.dashboard-actions a {
    text-decoration: none;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.dashboard-actions a:hover {
    background-color: #0056b3;
}


/*login*/
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-container h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.login-container p {
    margin-bottom: 1.5rem;
    color: #666;
    text-align: center;
}

.login-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-container input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s;
}

.login-container input:focus {
    border: 1px solid #4f79f5;
}

.login-container button {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background: #4f79f5;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.login-container button:hover {
    background: #3b60d6;
}

.login-container .register-link {
    text-align: center;
    margin-top: 1rem;
}

.login-container .register-link a {
    color: #4f79f5;
    text-decoration: none;
    font-weight: 500;
}

.login-container .register-link a:hover {
    text-decoration: underline;
}



/* Modal Styling */
.modal {
    display: none; /* Standardmäßig versteckt */
    position: fixed; /* Popup bleibt über allem */
    z-index: 9999; /* Höchste Priorität */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Hintergrund abdunkeln */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

/* Schließen-Button */
.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
}
