.cookie-notice-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    color: #333333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 350px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #eee;
}

.cookie-notice-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-notice-text {
    margin-bottom: 5px;
}

.cookie-notice-button {
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.2s ease;
    align-self: flex-end;
}

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

@media (max-width: 480px) {
    .cookie-notice-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
