@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    
    
}



.header {
    border-radius: 8px;
}

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

h1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #00fff7;
    padding: 20px;
    font-size: 30px;
    font-family: 'Comfortaa', sans-serif;
}

h2 {
    font-weight: bold;
    font-size: 16px;
    color: rgba(0,59,64,1);
    font-size: 16px;
    font-family: 'Comfortaa', sans-serif;
   
}

.btn-custom {
    background-color: rgba(0,59,64,1) !important; /* Hintergrundfarbe schwarz */
    color: aqua!important; /* Aqua-Farbe für den Text */
    border: none; /* Falls keine Rahmenfarbe erwünscht ist */
}

.btn-custom:hover {
    background-color: #333 !important; /* Leicht helleres Schwarz beim Hover */
}





h3 {
    font-weight: bold;
    font-size: 16px;
    color: #0b8d89;
    font-size: 16px;
   
}

h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: aqua;
    padding: 20px;
    font-size: 20px;
    background-color: rgba(0,59,64,1);
    font-family: 'Comfortaa', sans-serif;
}

h6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: aqua;
    padding: 20px;
    font-size: 20px;
    font-family: 'Comfortaa', sans-serif;
}



.section-title {
    color: #ffffff;
    font-weight: bold;
    margin-top: 20px;
}

.assessment-table {
    margin-top: 20px;
}

.btn-result {
    color: #ffffff;
    border: 1px solid aqua;
}

.btn-feedback {
    background-color: #00fff7; /* Farbe des Buttons */
    color: rgba(0,59,64,1);
    padding: 10px 20px;
    margin: 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

.btn-feedback:hover {
    background-color: rgba(0,59,64,1); /* Hover-Farbe */
    color: aqua;
}


#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Weiß mit 90% Deckkraft */
    z-index: 5000; /* Über anderen Elementen */
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    top: 20%; /* Adjust as needed to reposition vertically */
    left: 50%;
    transform: translate(-50%, -20%);
    background-color: #ffffff; /* White background */
    padding: 20px 30px;
    border: 1px solid #cccccc;
    border-radius: 12px; /* Rounded borders */
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 80%;
}

/* Cookie Banner Text */
#cookie-banner p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333333;
}

/* "Accept and Close" Button */
#cookie-banner .cookie-consent__accept {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(90deg, rgba(0,59,64,1) 0%, rgba(50,75,75,1) 100%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#cookie-banner .cookie-consent__accept:hover {
    background-color: #218838; /* Darker green on hover */
}

/* "Cookies info" Link */
#cookie-banner .cookie-button {
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
}

#cookie-banner .cookie-button:hover {
    text-decoration: underline;
}

/* Adjustments for small screens */
@media (max-width: 576px) {
    #cookie-banner {
        top: 10%;
        padding: 15px 20px;
    }

    #cookie-banner p {
        font-size: 14px;
    }

    #cookie-banner .cookie-consent__accept,
    #cookie-banner .cookie-button {
        font-size: 14px;
    }
}