.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: #1f2937;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    /*font-family: "Roboto", sans-serif, -apple-system, sans-serif;*/
}

.logo-container {
    display: flex;
    align-items: center;
    padding-left: 10px;
    gap: 40px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #374151;
}

.logo {
    max-width: 200px;
    height: auto;
}

.cookie-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cookie-notice p {
    margin: 0 0 16px 0;
    font-size: 1.5rem;
    color: #d1d5db;
    line-height: 1.5;
}

.cookie-notice a {
    color: #60a5fa;
    text-decoration: none;
}

.cookie-notice a:hover {
    color: #93c5fd;
}

.cookie-notice button {
    width: 100%;
    padding: 10px 16px;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.2s;
}

.cookie-notice button:hover {
    background: #f97316;
}

.cookie-notice.hidden {
    display: none !important;
}
