#service-tool-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: none; /* Wird vom JS eingeblendet */
}

#service-tool-cookie-banner h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #1a202c;
}

#service-tool-cookie-banner p {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 20px;
}

.st-cookie-actions {
    display: flex;
    gap: 10px;
}

/* Button Basis-Styles */
.st-cookie-btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

/* Akzeptieren Button */
.cookie-accept {
    background-color: #2271b1;
    color: white;
}

.cookie-accept:hover {
    background-color: #135e96;
}

/* Ablehnen Button */
.cookie-decline {
    background-color: #edf2f7;
    color: #4a5568;
}

.cookie-decline:hover {
    background-color: #e2e8f0;
}