.cookie-notice {
    position: fixed;
    left: 20px;
    bottom: 20px;
    max-width: 400px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    z-index: 99999999;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: fadeIn 0.5s;
}

.cookie-notice-content {
    padding: 30px;
}

.cookie-notice p {
    margin: 0 0 15px 0;
    color: #000;
}

.cookie-notice-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-notice-link {
    color: #000;
    text-decoration: underline;
    font-size: 13px;
}

.cookie-notice-link:hover {
    text-decoration: none;
}

.cookie-notice-button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s;
}

.cookie-notice-button:hover {
    background-color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .cookie-notice {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-notice-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-notice-link {
        margin-bottom: 10px;
    }
    
    .cookie-notice-button {
        width: 100%;
    }
}
