/* Algemene instellingen */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f5f7, #e8e8ec);
    color: #858592;  /* Basis tekstkleur */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}
/* Algemene instellingen voor Admin Dashboard */
/* Logo Styling */
.admin-logo img {
    height: 50px;  /* Pas de grootte aan zoals nodig */
    width: auto;
    display: block;
}

/* Header Styling */
.admin-header {
    width: 100%;
    background: #101323;
    padding: 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Zorg dat de logo en titel mooi gecentreerd zijn */
.admin-logo {
    flex-shrink: 0;
    margin-right: 15px; /* Ruimte tussen logo en titel */
}

.admin-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    flex-grow: 1; /* Laat de titel zich aanpassen */
    text-align: center;
}

/* Gebruikersinformatie styling */
.admin-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-user-info span {
    font-size: 1.2rem;
    color: #C77DF2;
}

/* Logout Button */
.btn-logout {
    background: linear-gradient(135deg, #14172C, #172C34);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-logout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 71, 87, 0.6);
}

/* Action Bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto;
}

/* Create Button (Admin Panel) */
.btn-primary {
    background: linear-gradient(135deg,#101323, #14172C); /* Gouden gradient */
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0px 10px 20px #101323;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px #C77DF2;
}



.btn-primary:hover::before {
    top: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
}
/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 15px;
    border-radius: 25px;
}

.search-bar input {
    border: none;
    outline: none;
    font-size: 1rem;
}

/* Companies List */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

/* Admin Company Cards (Verbeterde, professionele uitstraling) */
.company-card {
    background: #454ade;  /* Card achtergrond */
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0px 15px 40px #14172C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover effect met subtiele scaling en schaduw */
.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 30px #C77DF2;
}

/* Fancy Highlight Effect */
.company-card::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 80%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

/* Hover Effect */
.company-card:hover::before {
    top: -10px;
    left: -10px;
    width: 200px;
    height: 200px;
}

/* Fancy Glowing Border */
.company-card::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    border-radius: 15px;
}

/* Card Header */
.company-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.company-card-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* Card Content */
.company-card-content {
    font-size: 1rem;
    color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Icoon stijl */
.company-card-content i {
    color: #C77DF2;
    margin-right: 8px;
}

/* Company Actions */
.company-actions {
    display: flex;
    gap: 10px;
}
.btn-icon:hover .material-icons {
    color: var(--primary-color);
}

.btn-icon.delete-btn:hover .material-icons {
    color: #dc3545; 
}

.btn-icon.edit-btn:hover .material-icons {
    color: #198754; 
}

.btn-icon.mail-btn:hover .material-icons {
    color: #ffc107; 
} 
/* Edit Button */
.btn-icon {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn-icon:hover {
    transform: scale(1.2);
    color: #C77DF2; /* Premium goudkleur bij hover */
}
/* Algemene Modal Styling */
/* MODAL CONTAINER - GLASS EFFECT */
.modal-content {
    border-radius: 15px;
    backdrop-filter: blur(15px);
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(199, 125, 242, 0.3);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

/* HEADER STYLING */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #C77DF2, #6A5ACD);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CLOSE BUTTON */
.close-modal {
    background: none;
    border: solid 1px #C77DF2   ;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-modal:hover {
    color: #C77DF2;
    transform: scale(1.2);
}

/* FORM INPUT CONTAINER */
.modal-body .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* FORM LABELS */
.modal-body .form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #C77DF2; /* Soft purple */
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* INPUT FIELDS */
.modal-body .form-group input {
    padding: 12px;
    border: 2px solid rgba(199, 125, 242, 0.5);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: black; /* Lichtpaars */
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    font-weight: 900;
}

/* PLACEHOLDER TEXT */
.modal-body .form-group input::placeholder {
    color: black;
    font-style: italic;
}

/* INPUT FOCUS EFFECT */
.modal-body .form-group input:focus {
    border: 2px solid #C77DF2;
    box-shadow: 0px 0px 12px rgba(199, 125, 242, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

/* TITLE */
.modal-body .subtitle {
    margin-bottom: 16px;
    color: #C77DF2; /* Soft purple */
}

/* BUTTON CONTAINER */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* CANCEL BUTTON */
.modal-footer .btn-secondary {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    padding: 14px 24px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 15px rgba(255, 71, 87, 0.4);
}

.modal-footer .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 25px rgba(255, 71, 87, 0.7);
}

/* SUBMIT BUTTON */
.modal-footer .btn-primary {
    background: linear-gradient(135deg, #454ADE, #6A5ACD);
    padding: 14px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    color: white;
    box-shadow: 0px 10px 25px rgba(104, 99, 236, 0.5);
}

/* SUBMIT BUTTON HOVER */
.modal-footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0px 15px 35px rgba(104, 99, 236, 0.7);
}


/* Hero Sectie (Intro) */
.hero {
    background: #101323;  /* Header kleur */
    padding: 45px 20px;
    text-align: center;
    border-radius: 0 0 50px 50px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.hero span {
    color: #C77DF2; /* Goudkleurig */
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Knoppen */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    background: #454ADE;  /* Button kleur */
    color: white;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px #C77DF2;
}

.btn:hover {
    transform: translateY(-3.3px);
    box-shadow: 0 12px 25px #C77DF4;
}

/* Speciale Glow Effect bij hover */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400%;
    height: 400%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover::before {
    opacity: 1;
}
/* Over Ons Sectie */
.about {
    background: #14172C; /* Semi-transparante achtergrond */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0px 10px 30px #3B345B; /* Subtiele gouden gloed */
    border: 2px solid #3B345B; /* Gouden rand */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-effect */
.about:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px #C77DF2;
}

/* Titel - Gouden tekst met schaduw */
.about h2 {
    margin-top: -10px;
    font-size: 2rem;
    font-weight: bold;
    color: #C77DF2; /* Goudkleurig */
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
}

/* Tekst - Zachte kleur en leesbaar */
.about p {
    font-size: 1.2rem;
    color: #f8f9fa;
    line-height: 1.6;
    max-width: 700px;
    margin: auto;
}

/* Premium Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

/* Alle Cards met Premium Gouden Design */
.card {
    background: #454ade;  /* Card achtergrond */
    color: white;  /* Tekst in cards wit maken voor contrast */
    padding: 30px;
    border-radius: 20px;
    width: 350px;
    margin-bottom: 45px;
    text-align: center;
    box-shadow: 0px 15px 40px #C77DF2;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glowing Hover Effect voor Alle Cards */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 50px rgba(255, 159, 0, 0.7);
}

/* Speciale Animatie binnen de Cards */
.card::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.card:hover::before {
    top: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
}

/* Fancy Glowing Border */
.card::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    border-radius: 20px;
}

/* Card Titel */
.card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}


/* Card Tekst */
.card p {
    font-size: 1rem;
    color: #f8f9fa;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Footer */
footer {
    background: #14172C;  /* Footer kleur */
    backdrop-filter: blur(10px);
    text-align: center;
    color: white;
    bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

footer a {
    color: #454ADE;  /* Link kleur */
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.login-container {
    background: #101323;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 50px;
    max-width: 400px;
    margin: 50px auto;
    text-align: center;
    box-shadow: 0px 10px 30px #3B345B;
    border: 2px solid #C77DF2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 40px #C77DF2;
}

/* Login Titel */
.login-container h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #C77DF2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(255, 215, 0, 0.5);
}

/* Input Velden */
.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #C77DF2;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Placeholder kleur */
.login-form input::placeholder {
    color: #858592;
}

/* Focus effect */
.login-form input:focus {
    border: 2px solid #C77DF2;
    outline: none;
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.6);
}
.background-blur {
    position: fixed; /* Achtergrond blijft op dezelfde plek */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/halftone-background-12-669e1ffb3360c-scaled.webp') no-repeat center center/cover;
    filter: blur(6px); /* Wazig effect */
    opacity: 0.5; /* Beetje doorzichtig voor een subtiel effect */
    z-index: -1; /* Achter de content */
}
/* Responsiviteit */
@media (max-width: 768px) {
    .admin-header-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .admin-header h1 {
        font-size: 1.5rem;
    }

    .admin-user-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-logout {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .admin-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .hero {
        flex-direction: column; /* Zorgt ervoor dat alles onder elkaar komt op mobiel */
        text-align: center;
    }
    
    .hero-logo img {
        max-width: 140px; /* Kleinere logo op mobiel */
    }
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    .about {
        padding: 30px;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 1rem;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .login-container {
        padding: 30px;
        max-width: 350px;
    }

    .login-container h1 {
        font-size: 1.8rem;
    }

    .login-form input {
        font-size: 1rem;
        padding: 10px;
    }
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Header Styling */
.dashboard-header {
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}
.dashboard-header p {
    font-size: 1.2rem;
}

/* Logout Button */
.btn-logout {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}
.btn-logout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 71, 87, 0.6);
}

/* Grid Layout voor de kaarten */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

/* Kaarten Styling */
.card {
    background: #454ade;  /* Card achtergrond */
    color: white;  /* Tekst in cards wit maken voor contrast */
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 15px 40px #14172C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 50px #C77DF2;
}
.card-GSC{  
    background: #454ade;  /* Card achtergrond */
    color: white;  /* Tekst in cards wit maken voor contrast */
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 15px 40px#C77DF2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Grafiek Container */
.chart-container {
    height: 400px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Dashboard Footer */
.dashboard-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    text-align: center;
    color: #fff;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.dashboard-footer a {
    color: #C77DF2;
    text-decoration: none;
    font-weight: bold;
}
.dashboard-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert-success {
    background: #454ADE;
    color: white;
}

.alert-error {
    background: #ff4757;
    color: white;
}

/* Alert/Notification Styling */
.alert {
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    animation: slideIn 0.5s ease-out;
}

.alert-success {
    background: #454ADE;
    color: white;
    border-left: 5px solid #C77DF2;
}

.alert-danger {
    background: #ff4757;
    color: white;
    border-left: 5px solid #ff0000;
}

.alert-warning {
    background: #ffa502;
    color: white;
    border-left: 5px solid #ff6348;
}

.alert-info {
    background: #2e86de;
    color: white;
    border-left: 5px solid #0abde3;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* Notification Styling */
.notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    width: 300px;
    overflow: hidden;
    animation: slide-in 0.3s ease-out;
}

.notification-content {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-message {
    color: #333;
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
}

/* Notification Types */
.notification-success {
    border-left: 4px solid #454ADE;
}

.notification-error {
    border-left: 4px solid #ff4757;
}

/* Progress Bar */
.notification-progress {
    height: 3px;
    background: #454ADE;
    width: 100%;
}

/* Animations */
@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notification-progress {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

.fade-out {
    animation: fade-out 0.3s ease-out forwards;
}

@keyframes fade-out {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* API Settings Modal Styles */
.settings-section-title {
    color: #454ade;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

#globalSettingsModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#globalSettingsModal .modal-header {
    background: linear-gradient(135deg, #454ade, #3498db);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

#globalSettingsModal .modal-title {
    font-weight: 600;
}

#globalSettingsModal .modal-footer {
    border-top: none;
}

#globalSettingsModal label {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 5px;
}

#globalSettingsModal .form-control {
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
}

#globalSettingsModal .form-control:focus {
    border-color: #454ade;
    box-shadow: 0 0 0 3px rgba(69, 74, 222, 0.2);
}




    /* Dashboard-container blijft scherp */
    .dashboard-container {
        position: relative; /* Zodat de inhoud erboven blijft */
        z-index: 1;
        padding: 10px;
    }

    .card-header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .card-header h3 {
        grid-column: 1;
        margin-left: 1rem;
        text-align: left;
        color: white;
        font-size: 1.2rem;
    }

    .card-header .view-full-btn {
        grid-column: 4;
        justify-self: end;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background:#101323;
        color: white;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        box-shadow: 0 4px 6px rgba(69, 74, 222, 0.1);
    }

    .view-full-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .view-full-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(69, 74, 222, 0.2);
    }

    .view-full-btn:hover i {
        transform: scale(1.1);
    }

    /* Preview Overlay Styling */
    .preview-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.8);
        z-index: 1000;
        backdrop-filter: blur(8px);
    }

    .preview-content {
        position: relative;
        width: 95%;
        height: 95%;
        background: var(--card-bg);
        margin: 1.5% auto;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        overflow: hidden;
    }

    .preview-header {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
    }

    .close-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
    }

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

    .preview-frame {
        width: 100%;
        height: 100%;
        border: none;
    }

    .chartjs-tooltip {
        background-color: #1a1a1a !important;
        border-radius: 4px;
        padding: 8px 12px;
        font-family: Arial, sans-serif;
        font-size: 13px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .gsc-chart-container {
        background: #101323;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .ga-chart-container {
        background: #101323;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    :root {
        --primary-color: #454ADE;
        --hover-color: #3238be;
        --bg-color: #f8fafc;
        --card-bg: #ffffff;
        --text-primary: #1e293b;
        --text-secondary: #64748b;
        --border-color: #e2e8f0;
    }


    .drive-body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        background: var(--bg-color);
        min-height: 100vh;
        color: var(--text-primary);
    }

    .header-drive {
        background: linear-gradient(135deg, var(--primary-color), #000000);
        padding: 2rem;
        color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .header-content-drive {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .back-btn-drive {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: rgba(255,255,255,0.2);
        color: white;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        text-decoration: none;
        font-weight: 500;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .back-btn-drive:hover {
        background: rgba(255,255,255,0.3);
        transform: translateY(-2px);
    }

    .doc-container-drive {
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .folder-info-drive {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: var(--card-bg);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .doc-list-drive {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .doc-card-drive {
        background: var(--card-bg);
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .doc-card-drive:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 16px rgba(69,74,222,0.1);
    }

    .doc-icon-drive {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .doc-title-drive {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-primary);
        display: -webkit-box;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .doc-meta {
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

    .view-btn-drive {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), #000000);
        color: white;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .view-btn-drive:hover {
       
        transform: translateY(-4px);
    }

    /* Preview Overlay */
    .preview-overlay-drive {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f8f9fa;
        z-index: 1000;
    }

    .preview-overlay-drive.active {
        display: flex;
        flex-direction: column;
    }

    /* Preview Header */
    .preview-header-drive {
        height: 64px;
        padding: 0 24px;
        background: white;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    /* File Info in Header */
    .file-info-drive {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #202124;
    }

    .file-info-drive i {
        font-size: 20px;
        color: #5f6368;
    }

    .file-name-drive {
        font-size: 16px;
        font-weight: 500;
    }

    /* Header Actions */
    .header-actions-drive {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Close Button */
    .close-btn-drive {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        background: transparent;
        color: #5f6368;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
        width: 40px;
        height: 40px;
    }

    .close-btn:hover {
        background: #f1f3f4;
        color: #202124;
    }

    .close-btn-drive i {
        font-size: 20px;
    }

    /* Preview Container */
    .preview-container-drive {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 32px;
        background: #f8f9fa;
    }

    /* Preview Frame */
    .preview-frame-drive {
        margin: 10px;
        margin-left: 40px;
        margin-top: 40px;
        padding: 50px;
        width: 96%;
        height: 700px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(104, 100, 100, 0.1);
        overflow: hidden;
    }

    /* Frame Content */
    .frame-content-drive {
        padding: 10px;
        width: 100%;
        height: 100%;
        overflow: auto;
    }

    /* Table Container */
    .table-container-drive {
        width: 100%;
        background: white;
    }

    /* Table Styling */
    .preview-frame-drive table {
        width: 100%;
        border-collapse: collapse;
        background: white;
    }

    .preview-frame-drive th {
        position: sticky;
        top: 0;
        background: white;
        padding: 12px 16px;
        text-align: left;
        font-weight: 500;
        color: #202124;
        border-bottom: 1px solid #e0e0e0;
        white-space: nowrap;
        z-index: 1;
    }

    .preview-frame-drive td {
        padding: 12px 16px;
        border-bottom: 1px solid #e0e0e0;
        color: #202124;
        white-space: nowrap;
    }

    .preview-frame-drive tr:hover td {
        background: #f8f9fa;
    }

    /* URL cells */
    .preview-frame-drive td a {
        color: #1a73e8;
        text-decoration: none;
    }

    .preview-frame-drive td a:hover {
        text-decoration: underline;
    }

    /* Modern Scrollbar */
    .frame-content::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .frame-content-drive::-webkit-scrollbar-track {
        background: transparent;
    }

    .frame-content-drive::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 20px;
        border: 2px solid transparent;
        background-clip: padding-box;
    }

    .frame-content-drive::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .frame-content-drive::-webkit-scrollbar-corner {
        background: transparent;
    }

    /* Download Button */
    .download-btn-drive {
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 24px;
        background: #1a73e8;
        color: white;
        border: none;
        border-radius: 4px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
        z-index: 2;
    }

    .download-btn-drive:hover {
        background: #1557b0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .header-drive { padding: 1.5rem 1rem; }
        .doc-container-drive { padding: 1rem; }
        .doc-list-drive { gap: 1rem; }
        
        .preview-frame-drive {
            width: 100%;
            height: 100%;
            margin: 0;
            border-radius: 0;
        }
        
        .preview-frame-drive table {
            margin: 0.5rem;
        }
        
        .preview-frame-drive .url-cell {
            max-width: 200px;
        }
    }
    .summary-card {
        border-left: 4px solid #6366f1;  /* Paars */
    }
    
    .backlink-card {
        border-left: 4px solid #2563eb;  /* Blauw */
    }
    
    .folder-info-drive {
        margin-top: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .folder-info-drive:first-child {
        margin-top: 0;
    }

.info-icon {
    font-size: 16px !important;
    color: #666;
    cursor: help;
    margin-left: 5px;
    vertical-align: middle;
}

.info-icon:hover {
    color: #007bff;
}.tooltip {
    max-width: 500px !important;  /* Bredere tooltip */
}

.tooltip-inner {
    max-width: 500px !important;  /* Bredere inhoud */
    padding: 8px 12px;
    text-align: left;
    word-break: break-word;
    white-space: normal;
}

.products-overview {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.products-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.products-card h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.product-item {
    background: #f0f4ff;
    color: #454ade;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.product-item.missing {
    background: #fff0f0;
    color: #de4545;
}

.remember-me-label {
    display: flex;
    align-items: center;
}

.remember-me-input {
    width: max-content !important;
    margin-right: 16px !important;
}

.reset_password {
    margin-top: 16px;
}
